从SQL Server中的表中获取INSERT的打印

时间:2012-11-22 02:55:50

标签: sql sql-server sql-server-2005

  

可能重复:
  SQL Server 2005 - Export table programatically (run a .sql file to rebuild it)
  Generate INSERT statements from a SQL Server Table

我在SQL Server 2005中有一个表,想要从插入中获取打印输出,这样我就可以将它们复制并粘贴到我的生产服务器中(我无法直接链接到生产服务器)。

我只想从一张非常大的桌子上打印出X条记录。

select * from data where tableID > 10100;

以上是我想用来确定生成插入的记录的条件。

1 个答案:

答案 0 :(得分:0)

尝试使用其中一个许多第三方工具:

  1. SQL Server 2008 R2 - generating INSERT statements for a table(我相信这也适用于2005版本)

  2. See this other SO question on the same topic(和答案!)

  3. SQL Server 2005 Script to Generate INSERT statements

  4. Generate Insert Statements For a SQL Server Table

  5. 或只是简单的Google(或Bing)!那里有的材料......