微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

sql-server – 用于sql server的mysqldump

我已经在 mysql数据库上多次使用 mysqldump,并熟悉它是如何工作的.有谁知道是否有类似的工具可以在sql Server数据库上使用.

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

解决方法

一个免费软件从表的数据创建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.jb51.cc/mssql/80528.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐