sql-server – 用于sql server的mysqldump

前端之家收集整理的这篇文章主要介绍了sql-server – 用于sql server的mysqldump前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经在 mysql数据库上多次使用 mysqldump,并熟悉它是如何工作的.有谁知道是否有类似的工具可以在sql Server数据库上使用.

我知道sql server可以备份它的数据库,但是如果可能的话我想把所有的sql insert语句都放到一个文本文件中.

解决方法@H_404_6@
有一个免费软件从表的数据创建sql插入语句:

[sql Dumper](主持人注意:由于受恶意软件侵扰的网站而删除链接)

sql Server Dumper enables you to dump selected sql Server database tables into sql INSERT
statements,that are saved as local
.sql files and contain all the data
required to create a duplicate table,
or to be used for backup purposes. You
can choose to create an individual
.sql file for each table,or combine
all selected tables into a single
file.

This program implements the following
special features:

  • Foreign Keys order tables in text file in order to insert data without
    colisions/errors
  • Primary Key IDENTITY guarantees the value of the IDENTITY field
  • Reference to itself eliminates the constraint and at the end create it
    again

将它与sql Server的内置模式生成(对象脚本)结合使用.

原文链接:https://www.f2er.com/mssql/80528.html

猜你在找的MsSQL相关文章