SQL Server Migration Asistant (SSMA) doesn't recognise MySQL Columns - mysql

I am trying to migrate my MySQL DB to MsSQL.However, as you can see in the picture SQL Server Management Assistant cant recognise MySQL table columns.
alternative link https://ibb.co/HXxKMBx

Related

Create a mysql view from sql server tables

I'm trying to create a mysql view from some sql server tables but I have not found the way. I have created a lot of views and tables in sql server from mysql tables with a linked server on sql server management studio but now I'm trying to do it to the other side.
You cannot do that, MySQL does not have the concept of linked servers connecting to other RDBMS products. The federated table engine can only connect to other MySQL servers.
You have to push the data from the ms sql server side into MySQL tables and you can create a view based on those tables within MySQL.

how to migrate database from mysql to mssql?

I have a web server in php and my sql .Now I have to upgrade the same server from my php to asp and my sql to mssql.
I have to write the whole php code in asp but I think I can direct migrate the database from my sql to mssql to save much more time. in the my sql database there is no user input data as it the new totaly server.
Just I want to take whole structure of the database to the mssql.
After google some time there is a tool from microsoft called(Microsoft SQL Server Migration Assistant for MySQL) when I try to migrate the database I got an error that the destination table doesnot exit .
can some body help me to migrate the database including keys from mysql to mssql

sql server table relationships to port to MYSQL

I ported a MS SQL 2008 database to MYSQL using a tool (NaviCAT). All the tables ported OK and the data seemed intact.
But now I am implementing a project using that MySQL database and I noticed that all the table relationships where gone.
Anyone knows how I can port a MS SQL database to MySQL without losing the table relationships or if there is a way to just port the relationships?.

Migrating a wordpress site from azure sql to Mysql

I need to migrate a mysql db including data from ms azure to my regular hosting provider. I already have an empty db waiting there.
The db contains a wordpress+woocommerce and various plugin tables.
Plz help..
Everywhere i find migrating from Mysql to sql but not Sql to Mysql
You should try MySQL Workbench which can easily do a migration from SQL Server (and Azure DB) to MySQL. The migration can be on the fly or it can result in some .sql scripts that you have to load in you MySQL database using your regular client (phpMyAdmin, EMMA or of course, MySQL Workbench).
You can find additional information about the migration capabilities of MySQL Workbench here.

Copy records from a table in mysql database to a SQL-SERVER 2008 database?

How can I copy all the records from a table in a MySql database to another table in a SQL-SERVER 2008 database?
I have tons of records in that mysql table and I'm trying to "migrate" the data.
I tried using the "MS SQL Server Migration Assistant for Mysql", but it only migrated the structure (table names, indices, etc..).
I would look into SQL Server Integration Services (SSIS) Packages connecting to mysql here
I would also see if OPENROWSET() is something that would work for you