About 22,200,000 results
Open links in new tab
  1. Migration guide: MySQL to SQL Server - learn.microsoft.com

    Jan 15, 2024 · This guide teaches you how to migrate your MySQL databases to Microsoft SQL Server by using SQL Server Migration Assistant for MySQL (SSMA for MySQL).

  2. Import MySQL database into a SQL Server - Stack Overflow

    Mar 19, 2022 · Here is my approach for importing .sql files to SQL Server: Export table from MySQL with --compatible=mssql and --extended-insert=FALSE options: mysqldump -u [username] -p --compatible=mssql --extended-insert=FALSE db_name table_name > table_backup.sql

  3. How To Transfer Data from MySQL to SQL Server

    Jan 24, 2023 · If the MySQL data can be queried from SQL Server Management Studio (SSMS) then the data can be merged by using a MERGE T-SQL statement in a SQL Server. We will look at how this can be done by creating a linked server from SQL Server to the MySQL database.

  4. Migrate Data from MySQL to SQL Server: Ultimate Guide [2025]

    Jan 10, 2025 · Several solutions are available for migrating MySQL to SQL Server, including Data Pump for SQL Server by Devart. This tool helps transfer data and table structures while automatically converting MySQL data types to their SQL Server equivalents.

  5. MySQL to SQL Server Backup and Restore Differences

    May 27, 2011 · In the MS SQL world you can use the built-in T-SQL commands to backup and restore databases. There is no need to use tools like mysqlhotcopy and mysqldump. The backup methods discussed in this chapter are online operations. MS SQL Server provides you three different backup strategies: Simple Recovery Model ; Full Recovery Model

  6. Migrate MySQL to SQL Server Database – Best How to Guide

    Apr 19, 2025 · There can be multiple reasons as to why a user may wish to migrate MySQL to SQL Server database. This migration is a crucial step for businesses or organizations, who are looking for a way to enhance their scalability and security. …

  7. MySQL to SQL Server Conversion Tutorial - MSSQLTips.com

    May 27, 2011 · From time to time companies initiate projects to move from one database platform to another. Such migrations can involve switching between database engines such as SQL Server, MySQL, Oracle, Sybase, DB2, etc.

  8. Migrating from MySQL to SQL Server: A Comprehensive Tutorial

    Mar 10, 2024 · Migrating from MySQL to SQL Server using ODBC (Open Database Connectivity) involves several steps. Below is a step-by-step guide to help you through the process: 1. Install MySQL ODBC Driver. Download and install the MySQL ODBC driver on the machine where SQL Server is installed. You can download the Devart MySQL ODBC driver here. 2. Create a DSN.

  9. How To Convert MySQL Database to SQL Server - DZone

    Dec 4, 2023 · There are several effective methods to convert a MySQL database to SQL Server. Here are some of the best approaches: 1. Convert MySQL to MSSQL Using SQL Server Migration Assistant (SSMA)...

  10. MySQL :: MySQL 9.3 Reference Manual :: 6.5.4 mysqldump — A …

    The mysqldump client utility performs logical backups, producing a set of SQL statements that can be executed to reproduce the original database object definitions and table data.It dumps one or more MySQL databases for backup or transfer to another SQL server. The mysqldump command can also generate output in CSV, other delimited text, or XML format.

  11. Some results have been removed