55

I have a table in a local SQL server database. I want to recreate this table in a hosted database.

What I want to do is to have a script that when run against the hosted database, this table is recreated with all the data, etc.

How do I create this script using SQL Server Management Studio? Thanks.

4

3 回答 3

97

1- 打开 SQL 服务器管理工​​作室。

2-右键单击包含所需表的数据库。

3- 选择“任务 => 生成脚本...”。

4- 按照向导,选择要为其生成脚本的对象(表、视图、存储过程等...)。

5- 从下一步开始,单击“高级”,对于标记为“脚本数据类型”的节点,选择“架构和数据”。

在此处输入图像描述

6-保存您的脚本并微笑:)

于 2012-11-22T23:08:25.877 回答
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')
于 2015-03-12T14:33:53.473 回答
3

您可以使用生成脚本数据库任务来执行此操作。右键单击数据库 > 任务 > 生成脚本...选择“选择特定数据库对象”和所需的表。

在设置脚本选项页面上,单击高级。有一个选项“脚本的数据类型”,选择“架构和数据”。选择保存位置。下一个。下一个。结束。

这就是答案,但是,如果表包含大量数据,我建议使用 bcp out 或其他方法来导出数据。如果新服务器在同一网络上,您也可以选择它作为链接服务器。

该脚本方法将生成单独的插入语句。

于 2012-11-22T23:14:37.210 回答