Hi all,
I need an sql which will copy schema of a specified table to a table in different db.
How to implement this?
Please help.
|
2
|
Hi all, I need an sql which will copy schema of a specified table to a table in different db. How to implement this? Please help.
|
||
|
|
|
|
SELECT INTO will create a new table with the same schema. So you could:
To just copy the schema and not the data:
This would not copy indexes or keys. To copy those, right click the table in SQL Sever Management Studio and choose 'Script table as'. That will give you a script you can run on the new database. |
||
|
|
|
Try with SQL SERVER SCRIPT WIZARD 1) Select a database 2) Right Click - > Tasks - > Generate scripts 3) Click Next - > and in the Select Database Screen, choose the table(will be selected by default). Check the "Script All Objects In The Selected Database" . 4) Click Finish. Hope this helps |
||
|
|
|
|
im not well versed wid sql but den i can give u snippets which might come in handy for you.
// This would give you all columns of MyTable with some constraints like nullable , length, default values and all
//This can give you the primary keys
//This would give you foreign key constraints.. Hope this will help you out.. cheers!! |
||
|
|