I have table Customers
in my access database which one I'm trying to import into a SQL Server table.
It keeps throwing an exception that it can't export the column DOB
which is a MS Access date column.
So I did run the query against that table
select dob
from customers
where year(dob) < 1000
I got plenty of results. But when I check the MS Access table like
select dob
from customers
where isdate(dob) = false
Those records won't show up. So function ISDATE consider those dates as valid.
Is there any other workaround to grab all records from table Customers
, which will actually allow me to insert those records into the SQL Server table?
Note: I need query not tool to do this.