data transfer using xml

KNN

Member
Joined
Oct 6, 2006
Messages
14
Programming Experience
1-3
Hello,

I need to create an application that transfers a data table, from my local sql 2005 express database to a remote SQL server through XML.

local server: scream\sqlexpress
table name: test
path: SCREAM\SQLEXPRESS\Databases\System Databases\master\Tables\test.dbo

remote server: testserver\ftpaccess.cc

really need this
thanx
 
Why does it have to be XML ? If both servers are running SQL, populate a DataSet from the source and inject it into the destination, seems much simpler. (Provided the destination is set to allow remote connections, which it seems it is)
 
Back
Top