Copy Schema Standard 1.05
It lets you copy the structure and schemas of SQL Server tables to other tables.
Copy Schema Standard is an interesting tool for SQL Server programmers. It comes equipped with functions that let you copy the structure and schemas of a table to others.
With Copy Schema Standard you can copy the definitions of each of the selected tables from one database to another (or even from one server to another), the indexing of each one of them, the triggers, the existing relations among different table fields, the views, the storted procedures, external keys, etc.
This way, Copy Schema Standard will be highly useful to make a second copy of the definitions and properties of an SQL Server database.
Download