1

I am looking to copy some lookup tables that are currently on windows azure. I do not believe trhere is a way to do this through sql server management studio so I'm wondering the best way to do this other than scripting them out by hand

4

3 回答 3

2

您通常会使用SQL 数据库迁移向导 (SQLAzureMW)执行任何涉及将数据从 SQL Azure 移动到 SQL Azure 的任务。此工具知道 SQL Azure 中支持和不支持的内容,并且比手动创建脚本更有效。

于 2012-08-27T13:07:58.707 回答
1

Select into 将创建和复制表,但不会创建索引或约束。

INTO 子句 (Transact-SQL)

在 SSMS 中,您可以右键单击表并选择生成以创建脚本。然后您可以编辑表和其他名称并运行脚本。

于 2012-08-27T13:04:25.270 回答
0

在这里找到答案,这比我希望的要容易!

为 SQL Server 表自动生成 INSERT 语句的最佳方法是什么?

于 2012-08-27T13:21:05.450 回答