Hey there folks. I have a MySQL table script that I need to create in SQL Server 2000. I figured I had 2 options...
1. manually alter the script so it is SQL Server compliant (changing data types and such)
2. create a MySQL DB, create the tables there and then import into SQL Server
Being that I wasn't up to manually altering a few hundred make table scripts I chose option 2. As far as the import goes, no problem. But when imported into SQL Server (using a DTS package) I noticed several things that gave me pause:
1. Default values were not imported
2. some int data types were changed to decimal (int types above 4 I think)
3. unique key constraints not imported
4. auto increment numbers not set to identity
This is all I've notice thus far.
So, here's the question, anybody know of a MySQL to SQL Server migration tool that would import more of the table attributes???? Or, an idea of something that would work better then using a DTS package to do the import?
Ideas?!?!
Suggestions?!?!
HELP!!!
Thank you!
-Mary Klaire
1. manually alter the script so it is SQL Server compliant (changing data types and such)
2. create a MySQL DB, create the tables there and then import into SQL Server
Being that I wasn't up to manually altering a few hundred make table scripts I chose option 2. As far as the import goes, no problem. But when imported into SQL Server (using a DTS package) I noticed several things that gave me pause:
1. Default values were not imported
2. some int data types were changed to decimal (int types above 4 I think)
3. unique key constraints not imported
4. auto increment numbers not set to identity
This is all I've notice thus far.
So, here's the question, anybody know of a MySQL to SQL Server migration tool that would import more of the table attributes???? Or, an idea of something that would work better then using a DTS package to do the import?
Ideas?!?!
Suggestions?!?!
HELP!!!
Thank you!
-Mary Klaire