Import MySQL database into a MS SQL Server(将 MySQL 数据库导入 MS SQL Server)
问题描述
我有一个来自 MySQL 转储的 .sql 文件,其中包含要插入这些表中的表、定义和数据.如何将转储文件中表示的此数据库转换为 MS SQL Server 数据库?
I have a .sql file from a MySQL dump containing tables, definitions and data to be inserted in these tables. How can I convert this database represented in the dump file to a MS SQL Server database?
推荐答案
我在网上找到了解决这个问题的方法
I found a way for this on the net
它需要一点工作,因为它必须一张一张桌子地完成.但无论如何,我可以将表、数据和约束复制到 MS SQL 数据库中.
It demands a little bit of work, because it has to be done table by table. But anyway, I could copy the tables, data and constraints into a MS SQL database.
这是链接
http://www.codeproject.com/KB/数据库/迁移-mysql-to-mssql.aspx
这篇关于将 MySQL 数据库导入 MS SQL Server的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 MySQL 数据库导入 MS SQL Server


基础教程推荐
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01