is this difficult? or is it as easy as uploading the DB and changing the source from mysql_xxx_xxx to mssql_xxx_xxx. does it support the same type of queries as mysql? thanks
It's impossible to do that just changing the source . Its not difficult but requires the types corection and brining them in compliance. Easy to solve it with a tool with data mapping functionality
There are transfer tools out there. Most likely you can't simply dump a sql file, but it isn't extremely difficult. Best bet is to look for a mysql to mssql migration tool.
You can export your data structure commands to a file and run the SQL in MSSQL and you can export your data from MySQL into CSV files and then import them again into MSSQL. If you go down this route, you'll need to handle each table separately but you could become unstuck with foreign keys if they are identity columns. And as said previously, triggers, indexes, constraints and anything that is out of the ordinary may not work and they need to be checked very closely. And you MUST check the datatypes and decide how they will work (or not work) in MSSQL. Good luck.