Important alert: (current site time 7/15/2013 7:18:02 PM EDT)
 

VB icon

Construct your Own create table script

Email
Submitted on: 1/1/2002 5:35:54 AM
By: Eli Leiba  
Level: Intermediate
User Rating: By 8 Users
Compatibility: SQL Server 7.0, SQL Server 6.5 and earlier
Views: 27287
author picture
(About the author)
 
     The code gets the necessary info from information schema to contsruct a CREATE table statement existing in the current database
 
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
--**************************************
-- for :Construct your Own create table script
--**************************************
I built it as a stored procedure 
To Execute write 
Exec sp_gen_create_table 'yourTableName'
for example : exec sp_gen_create_table 'products'
in northwind
yields:
CREATE TABLE products(
	ProductID intNOT NULL,
	ProductName nvarchar (80) NOT NULL,
	SupplierID intNULL,
	CategoryID intNULL,
	QuantityPerUnit nvarchar (40) NULL,
	UnitPrice moneyNULLDEFAULT (0),
	UnitsInStock smallintNULLDEFAULT (0),
	UnitsOnOrder smallintNULLDEFAULT (0),
	ReorderLevel smallintNULLDEFAULT (0),
	Discontinued bitNOT NULLDEFAULT (0))
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.
				
--**************************************
-- Name: Construct your Own create table script
-- Description:The code gets the necessary info from information
schema to contsruct a CREATE table statement
existing in the current database
-- By: Eli Leiba
--
-- Inputs:@tableName varchar(50)
--
-- Returns:The create table statemant 
(Does not include indexes,constraints,triggers)
Only the structure!
--
--This code is copyrighted and has-- limited warranties.Please see http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=380&lngWId=5--for details.--**************************************

Create proc sp_gen_create_table (@tableName varchar(50))
as
-- Create Table Generation SCript.
-- By : eli leiba 
-- Date 14/8/2001 
-- Desc : How to create a basic Table Create Statement
--like is Generate SQL SCRIPT option
set nocount on 
declare @Num_rows smallint
Create Table #scriptFile 
(LineId int not null identity(1,1) 
 primary key clustered,
 LineText varchar(150) ,
 Ordinal_Position smallint default 0,
 char_Len varchar(10),
 col_default varchar(20),
 Nullable char(10))
Insert into #scriptFile (LineText)
 values ('CREATE TABLE ' + @tableName + '(' )
Insert into #ScriptFile (LineText,
Ordinal_Position,
char_Len,
col_default,
Nullable ) 
 select '	' + Column_Name + ' ' + Data_Type as LineStart ,
 Ordinal_Position,
 case Data_type 
when 'char' then '(' + cast (Character_Maximum_Length as varchar) + ')'
when 'nchar' then '(' + cast (Character_Maximum_Length as varchar) + ')'
when 'nvarchar' then '(' + cast (Character_Maximum_Length as varchar) + ')'
when 'varchar' then '(' + cast (Character_Maximum_Length as varchar) + ')'
else ' ' 
 end
 Character_Maximum_Length,
 case Isnull(column_default,'*')
when '*' then ' ' 
else ' DEFAULT ' + column_default
 end ,
 case Is_Nullable
when 'No' then 'NOT NULL'
when 'Yes' then 'NULL' 
 end 
from Information_schema.columns
where table_name = @tableName 
order by 
Ordinal_Position
Update #ScriptFile 
set LineText = LineText + ' ' + 
char_Len + ' ' + 
Nullable + col_default + ',' 
where Ordinal_Position > 0
select @num_rows = count(*) from #ScriptFile
update #ScriptFile
 set LineText = Replace (LineText,',',')')
where LineId = @num_rows
select LineText from #ScriptFile 
go


Other 20 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Intermediate category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments
9/22/2002 10:16:46 PMFreddy Siburian

good and exellent
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.