通过 phpMyAdmin 将数据库转储导出到 MS SQL

发布于 2024-08-10 22:58:31 字数 104 浏览 1 评论 0原文

当我使用 phpMyAdmin 导出时,它有一个 MS SQL 导出兼容性选项。但是,生成的文件包含许多非 MS SQL 兼容项,例如mediumtext 和枚举数据类型。我该如何解决这个问题?

When I use the phpMyAdmin export, it has an option for MS SQL export compatibility. However, the resulting file includes many non-MS SQL compatible items, such as mediumtext and enum datatypes. How do I work around this issue?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

鱼忆七猫命九 2024-08-17 22:58:31
mysqldump --compatible=mssql -uroot -p some_database > output_file_mssql.sql

vs

mysqldump -uroot -p some_database > output_file.sql

查看两个文件之间的差异将向您展示一些需要检查的内容。

我希望这对一些人有帮助。

mysqldump --compatible=mssql -uroot -p some_database > output_file_mssql.sql

vs

mysqldump -uroot -p some_database > output_file.sql

Looking at the difference between the two files will show you some things to check out.

I hope that helps some.

独闯女儿国 2024-08-17 22:58:31

如果您无法找到 phpMyAdmin 生成正确格式的导出文件的方法,那么您必须编辑生成的导出文件以使其与 MS SQL 兼容。例如,您可能需要使用正则表达式来替换 ENUM 数据类型。

如果您发现必须经常导出数据,您可能会发现编写一个可以根据需要重新运行的简短文本处理脚本会节省您的时间。

哦,请注意您的文本编辑器或最喜欢的脚本语言可以正确处理 phpMyAdmin 生成的文件的字符编码。

If you are unable to locate a way for phpMyAdmin to generate an exported file of the correct format, then you'll have to edit the resulting exported file to make it compatible with MS SQL. You may need to use regular expressions to, for example, replace ENUM datatypes.

If you find that you have to export data frequently, you may find that writing a short text processing script that you can re-run as needed will save you time.

Oh, and take care that your text editor or favorite scripting language can properly handle the character encoding of the file generated by phpMyAdmin.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文