Viewing 3 posts - 1 through 3 (of 3 total)
Fantastic. I think using the BACKUP and RESTORE method is going to work, otherwise I'll look into creating an SSIS package. You guys have been a big help.
Thanks,
-Dave
July 20, 2009 at 12:08 pm
BACKUP and RESTORE would be would perfectly, something along the lines:
use master
backup database project1 to DISK='C:\DatabaseBackup.bak'
restore database project1_dcarrigg from DISK='C:\DatabaseBackup.bak'
The problem (as you might have already noticed) is that each...
July 20, 2009 at 11:57 am
I've thought about that same thing, and we're currently use ApexSQL DataDiff for doing just that.
The issue with this is that now it's a manual process that a DBA needs...
July 20, 2009 at 11:43 am
Viewing 3 posts - 1 through 3 (of 3 total)