Hello Again!
I need to copy data from our Staging Platform (STAGESQL01) to the Quality Platform (STAGESQL02)...db name in each is "VEG" and table name is AreaEval...
I know I need to do:
INSERT INTO AreaEval
SELECT * FROM AreaEval
Just not sure how to do it using two different platforms...
So, something like:
INSERT INTO [STAGESQL02].[VEG].[AreaEval]
SELECT * FROM [STAGESQL01].[VEG].[AreaEval]
But, with the correct Syntax....
Thanks!
-jiggyg
I need to copy data from our Staging Platform (STAGESQL01) to the Quality Platform (STAGESQL02)...db name in each is "VEG" and table name is AreaEval...
I know I need to do:
INSERT INTO AreaEval
SELECT * FROM AreaEval
Just not sure how to do it using two different platforms...
So, something like:
INSERT INTO [STAGESQL02].[VEG].[AreaEval]
SELECT * FROM [STAGESQL01].[VEG].[AreaEval]
But, with the correct Syntax....
Thanks!
-jiggyg