Convert date from access to SQL Server with SSIS
Posted
by Arne
on Stack Overflow
See other posts from Stack Overflow
or by Arne
Published on 2010-06-15T10:23:12Z
Indexed on
2010/06/15
10:42 UTC
Read the original article
Hit count: 242
Hi, I want to convert a database from access to SQL Server using SSIS. I cannot convert the date/time columns of the access db. SSIS says something like:
conversion between DT_Date and DT_DBTIMESTAMP is not supported.
(Its translated from my German version, might be different in English version). In Access I have Date/Time column, in SQL Server I have datetime. In the dataflow chart of the SSIS I have a OLE DB source for the access db, an sql server target and a data conversion. In the data conversion I convert the columns to date[DT_DATE]. They are connected like this:
AccessDB -> conversion -> SQL DB
What am I doing wrong? How can I convert the Access date columns to SQL Server date columns?
© Stack Overflow or respective owner