我有一个本地的SQL Server数据库中的表。我想重新创建此表在托管数据库。
我想要做的是有一个脚本,当对托管数据库运行,此表是重新创建的所有数据,等等。
如何创建使用SQL Server Management Studio的这个脚本?谢谢。
1打开SQL Server Management Studio中。
2-右键单击包含所需的表的数据库。
3-选择 “任务=>生成脚本...”。
4-按照向导,然后选择要生成(表,视图,存储过程等)脚本的对象。
5从下一步,点击“高级”,并为标有“数据类型脚本”节点选择“架构和数据”。
6-保存脚本和微笑:)
select 'create table [' + so.name + '] (' + o.list + ')' + CASE WHEN tc.Constraint_Name IS NULL THEN '' ELSE 'ALTER TABLE ' + so.Name + ' ADD CONSTRAINT ' + tc.Constraint_Name + ' PRIMARY KEY ' + ' (' + LEFT(j.List, Len(j.List)-1) + ')' END
from sysobjects so
cross apply
(SELECT
' ['+column_name+'] ' +
data_type + case data_type
when 'sql_variant' then ''
when 'text' then ''
when 'ntext' then ''
when 'xml' then ''
when 'decimal' then '(' + cast(numeric_precision as varchar) + ', ' + cast(numeric_scale as varchar) + ')'
else coalesce('('+case when character_maximum_length = -1 then 'MAX' else cast(character_maximum_length as varchar) end +')','') end + ' ' +
case when exists (
select id from syscolumns
where object_name(id)=so.name
and name=column_name
and columnproperty(id,name,'IsIdentity') = 1
) then
'IDENTITY(' +
cast(ident_seed(so.name) as varchar) + ',' +
cast(ident_incr(so.name) as varchar) + ')'
else ''
end + ' ' +
(case when IS_NULLABLE = 'No' then 'NOT ' else '' end ) + 'NULL ' +
case when information_schema.columns.COLUMN_DEFAULT IS NOT NULL THEN 'DEFAULT '+ information_schema.columns.COLUMN_DEFAULT ELSE '' END + ', '
from information_schema.columns where table_name = so.name
order by ordinal_position
FOR XML PATH('')) o (list)
left join
information_schema.table_constraints tc
on tc.Table_name = so.Name
AND tc.Constraint_Type = 'PRIMARY KEY'
cross apply
(select '[' + Column_Name + '], '
FROM information_schema.key_column_usage kcu
WHERE kcu.Constraint_Name = tc.Constraint_Name
ORDER BY
ORDINAL_POSITION
FOR XML PATH('')) j (list)
where xtype = 'U'
AND name NOT IN ('dtproperties')
为此,您可以使用生成脚本的数据库任务。右键单击数据库>任务>生成脚本...选择“选择特定数据库对象”和你想要的表。
在设置脚本选项页面上,单击高级。有一个选项“数据脚本的类型”,选择“架构和数据”。选择在哪里保存它。下一个。下一个。完。
这就是答案。然而,如果表中包含大量数据的,我建议使用BCP出来或导出数据的另一种方法。如果新的服务器是在同一个网络上,你也可以选择它作为一个链接的服务器。
该脚本方法将生成单独的INSERT语句。