How can I tranfer data between different DB Servers, this is a daily job, i.e:
Insert into ServerA..table1 select data from ServerB.table2.
(this is just an example, the real situation is we select data from many servers, and then do some join, then insert into the destination).
We can not use SSIS, we can not use linked server, How can we do this?
btw, this is a daily job, and the data is huge.