I'm trying to copy data from MySQL to SQL Server 2008. My SSIS is generating error for time (DBTime) column in MySQL database. (cannot convert dbtime to dbtime2) What datatype can i use in SQL server for time? I tired nvarchar, varchar and also tried data conversion task but i get same error.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You could use time or datetime.

EDIT:

Now that I see the type of data that MySQL uses for time what you probably want to do is to put the data into an nvarchar on the SQL Server side, and in SSIS you can invoke

TIME_FORMAT(timecol, '%H:%i:%S')

The SSIS tool lets you do specifications of how to manipulate individual columns before inserting into the other database using scripting.

link|improve this answer
i tried time and it gives me error cannot convert dbtime to dbtime2, i dont want to use datetime because it will convert into date. – rs. Aug 6 '10 at 14:46
Please provide more information. There is no dbtime data type in MySQL. What is the data type of the column in MySQL, and what is the data type of the SQL Server column? – Tony Miller Aug 6 '10 at 15:50
time in MySQL and time in SQLServer, dbtime is SSIS representation of mysql time datatype and dbtime2 for sql server – rs. Aug 6 '10 at 18:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.