July 30, 2015 at 11:35 am
SSRS Newbie, how much experience do you have producing SQL programs?
July 30, 2015 at 11:36 am
Hmm... on your 2014 servertry running
TRUNCATE TABLE dbo.Order__V2;
Then,
INSERT INTO dbo.Order__V2 SELECT * FROM [TestServer].[TestDB].[dbo]dbo.Order__V2;
Then,
SELECT * FROM dbo.Order__V2;
Then on your 2000 TestServer
Try running,
SELECT * FROM [TestDB].[dbo]dbo.Order__V2;
What are the results of those 4 queries?
July 30, 2015 at 11:56 am
ZZartin- I ran the 4 queries you suggested. I was able to truncate the destination database on the new server successfully. It shows the same number of rows as the old sql server 2000. Why did it not update the first time with the original script? Any suggestions?
patrickmcginnis59 10839 - Little over a year.
July 30, 2015 at 12:05 pm
SSRS Newbie (7/30/2015)
ZZartin- I ran the 4 queries you suggested. I was able to truncate the destination database on the new server successfully. It shows the same number of rows as the old sql server 2000. Why did it not update the first time with the original script? Any suggestions?patrickmcginnis59 10839 - Little over a year.
Ok, I'm just a bit concerned that you might have expected ZZartin's script to update tables in itself, rather than just produce SQL scripts. Make sure you understand the code you're running!
July 30, 2015 at 12:08 pm
patrickmcginnis59 10839- Thanks Patrick. I know I'm still at learning stage with SQL server and haven't done this transition of SQL server before. I appreciate your inputs.
Viewing 5 posts - 16 through 19 (of 19 total)
You must be logged in to reply to this topic. Login to reply