The following SQL select query will copy the source table structure to the destination table:
Code:select *
into <destination table>
from <source table>
where 1=0
Alternatively right click on the table in SQL Server Management Studio or Visual Studio, Select
Script Table as >
Create to >
New Query Editor Window, change the the name of the source table to the destination table and modify the scripts if necessary (eg. select part of the fields to copy) and then run the query.