I'm trying to migrate from sql server 2000 to mysql by using DTS. That's the best tool I know yet.
But one a sql server tables has a column with datetime type, the DTS suggest the following sql code:
`StartDate` long varbinary NULL,
`EndDate` long varbinary NULL,
It should be:
`StartDate` DateTime NULL,
`EndDate` DateTime NULL,
I do change manually but the DTS doesn't accept the new script. IT says:
HResult of 0x800040e14 returned Unexpected error occurred. An Error result was returned without an error message.