sql >> Database >  >> RDS >> Sqlserver

Hoe genereer ik in SQL Server een CREATE TABLE-instructie voor een bepaalde tabel?

Ik heb de bovenstaande versie aangepast om voor alle tabellen te werken en nieuwe SQL 2005-gegevenstypen te ondersteunen. Het behoudt ook de primaire sleutelnamen. Werkt alleen op SQL 2005 (met behulp van cross apply).


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 UPPER(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')

Bijwerken: Extra verwerking van het XML-gegevenstype

Update 2: Gevallen opgelost wanneer 1) er meerdere tabellen zijn met dezelfde naam maar met verschillende schema's, 2) er meerdere tabellen zijn met PK-beperking met dezelfde naam



  1. Zijn PL/SQL-variabelen in cursors in feite hetzelfde als bindparameters?

  2. Functie voor datumnotatie in SQL Server

  3. 5 goede redenen om Microsoft Access-sjablonen te downloaden en te gebruiken

  4. SSMS-resultaten naar raster - CRLF niet bewaard in kopiëren/plakken - betere technieken?