How can I create a table from another table?
Option 1
SELECT * INTO target FROM source WHERE 1 = 2
But this does not create all the constraints.
Option 2
right click on the table -> Script table as -> Create to.: this does not work for me as I want to do this frequently for over 30 tables.
Any ideas?