Does anyone know where there might be a copy of the MySQL “World” example database online somewhere that is Microsoft SQL compatible? I don’t have a running MySQL server on hand, just the SQL text file that SQL Server 2008 rejects.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is now 🙂 http://pastebin.com/6ATaLuNs
I have been able to load the database into my own SQL Server installation by converting the data types from MySql to SQL Server version, removing MySql-specific code (such as engine specification), and using
CHECKconstraints in place of theenum‘s. Here’s my rough attempt at converting the table structure script:You can run the INSERT statements as-is if you make the following changes (you will have to manually pull out the
INSERTstatements by removing theCREATE TABLEcode in the MySql script):\'with''for SQL Server’s quote escaping