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的内置模式生成(对象脚本)结合使用.

相关文章

SELECT a.*,b.dp_name,c.pa_name,fm_name=(CASE WHEN a.fm_n...
if not exists(select name from syscolumns where name=&am...
select a.*,pano=a.pa_no,b.pa_name,f.dp_name,e.fw_state_n...
要在 SQL Server 2019 中设置定时自动重启,可以使用 Window...
您收到的错误消息表明数据库 'EastRiver' 的...
首先我需要查询出需要使用SQL Server Profiler跟踪的数据库标...