Copy Table Standard 1.05
You can copy tables between databases in SQL Server.
Copy Table Standard is a very useful tool for all those users who often work with SQL Server databases, as it lets you copy tables between databases in SQL Server.
It doesn`t copy all the tables in the original database, as the Copy Table Standard user can preselect which tables they want to export to the other SQL Server database. When copying, it includes all the structures and the data they contain.
Logically, the tables exported by Copy Table Standard keep all the indexing rules, and the primary keys if there are any.
Download