Since there is no mechanism to transfer data from one DB to another in Free SQL Server 2005 Management Studio Express I thought to write a simple utility to do this.
The utility is using ADO.Net SqlBulkCopy class to achieve the functionality.
Steps to transfer the data from one DB to another
- Enter DB connection information of both Source DB and Destination DB.
- Click Connect
If there is no error in the connection details it will establish connections to both server and list all the tables in both Db in bottom combo boxes. - Choose the source table from left side combo box and designation table from right side combo box.
- Click Transfer.
- Work only with Sql server.
- Tested only in Sql server 2005.
- Both source table and destination table should be similar.
Sql2005_DataTransfer.zip
2 comments:
Thanks for posting this...I have adapted it into a service format for my usage but it was just what I needed!
HI Warren,
Please see this Posting..
http://anzme.blogspot.com/2008/06/importexport-data-with-sql-server-2005.html
Actually there is a full featured DTS available for FREE from MS, but its not coming along with the SSMSE, you have to download and install it separately.
Best Regards
Post a Comment