Hi,
I must transfer an oracle table to sql server with DTS.
A column is varchar type in the oracle table and is datetime in sql server table.
For the transformation I use this:
DTSDestination("col_date") = convert(datetime,DTSSource("col_date"),1).
When I run the DTS I have this error:
the number of failing rows exceeds the maximum specified.
error source:Microsoft VBScript runtime error
Error description: Type mismatch:'convert'
Could you tell me please what is wrong with my DTS&
Many thanks
I must transfer an oracle table to sql server with DTS.
A column is varchar type in the oracle table and is datetime in sql server table.
For the transformation I use this:
DTSDestination("col_date") = convert(datetime,DTSSource("col_date"),1).
When I run the DTS I have this error:
the number of failing rows exceeds the maximum specified.
error source:Microsoft VBScript runtime error
Error description: Type mismatch:'convert'
Could you tell me please what is wrong with my DTS&
Many thanks