I have a SqlServer db that I would like to port to MySQL. What’s the best way to to this. Things that need to be ported are:
- Tables (and data)
- FileStream → MySQL equivalent?
- Stored Procedures
- Functions
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.
Data types are relatively similar.
There is no equivalent to FileStream in MySQL – the files must either be stored as BLOBs, or on the file system while the path is stored in the database.
Migrating away from TSQL means:
WITHclause in MySQL – it will have to converted into a derived table/inline viewTOPsyntax – these have to be converted to useLIMITROW_NUMBER,RANK,DENSE_RANKorNTILE. See this article for alternatives.