5 pts.
 Transfering table data from one database to another
I am using SQL Server 2005 i m inserting some data from one database to another. both Servers are resided on different machine.

Software/Hardware used:
ASKED: October 13, 2008  12:50 PM
UPDATED: November 16, 2008  5:56 AM

Answer Wiki:
So, what's the problem? please specify that I assume your question is how do you move data directly from 1 database to another? Actually, Mr. Denny taught me this just a couple of weeks ago. It is really easy. Here's the syntax (assuming you're logged on to the database where the data is currently located): Insert into other_serverother_database.table_name select column1, column2, column3 from original_table where whatever = whatever;
Last Wiki Answer Submitted:  October 14, 2008  3:58 pm  by  Sqloholic   25 pts.
All Answer Wiki Contributors:  Sqloholic   25 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Create a link server. between two servers .
or thru dts/ssis transfer data between database on different servers.

 30 pts.