in

SQL Server Community Blogs

Voices of the SQL Server Community

Browse by Tags

Sorry, but there are no more tags available to filter with.
  • Generate SQL Script

    --This procedure will generate the structure of the table Create Procedure GenerateScript ( @tableName varchar(100)) as If exists (Select * from Information_Schema.COLUMNS where Table_Name= @tableName) Begin declare @sql varchar(8000) declare @table varchar(100) declare @cols table (datatype varchar...
    Posted to Madhivanan (Weblog) by Madhivanan on 08-27-2007
Page 1 of 1 (1 items)
Powered by Community Server (Commercial Edition), by Telligent Systems