use*_*554 52 sql-server ssms sql-server-2008
我在本地SQL服务器数据库中有一个表.我想在托管数据库中重新创建此表.
我想要做的是创建一个脚本,当对托管数据库运行时,将使用所有数据等重新创建此表.
如何使用SQL Server Management Studio创建此脚本?谢谢.
Moh*_*lam 94
1-打开SQL Server Management Studio.
2-右键单击包含所需表格的数据库.
3-选择"Tasks => Generate Scripts ...".
4-按照向导进行操作,然后选择要为其生成脚本的对象(表,视图,存储过程等).
5-从下一步,单击" 高级 ",对于标记为"脚本数据类型"的节点,选择" 架构和数据 ".

6-保存你的脚本并微笑:)
小智 5
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')
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
57709 次 |
| 最近记录: |