January 10, 2007 at 11:22 am
Had to re-install MSSQL 2K following disaster. Both old and new install are at 8.00.2040
Segue Silk stored all its info in master.mdf, I have copy of old master.mdf file.
Can I stop MSSQL and overlay new master.mdf with old master.mdf and restart MSSQL?
Thanks -- Gary
January 10, 2007 at 12:29 pm
no need;
you can simply insert these user tables back into the current master; you can use either DTS to copy the tables, or sql commands
I assume you restored or attached the previous database as the name "oldmaster" for the db:
for each of the tables:
SELECT X.* INTO MASTER.DBO.SEQUESILKTABLE1 FROM OLDMASTER.DBO.SEQUESILKTABLE1 X
SELECT X.* INTO MASTER.DBO.SEQUESILKTABLE2 FROM OLDMASTER.DBO.SEQUESILKTABLE2 X
Lowell
January 10, 2007 at 1:09 pm
Thanks Lowell - turned out my master log isn't usable. We are going to go with the new install as is.
Great idea though!
Gary
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply