You could add a linked server. You can do this from EM or using sp_addlinkedserver. From there you could then schedule a job that copies the data accross using a fully qualified name:
<servername>.<database name>.<owner name>.<object name> eg
INSERT INTO SQL1.db1.dbo.Table1
(Val1, Val2, Val3)
VALUES
SELECT Val1, Val2, Val3
FROM SQL2.db1.dbo.Table1
regards
David Cameron
|