Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
JVRudnick
Starting Member
4 Posts |
Posted - 2005-08-26 : 16:23:22
|
| how do you create a new SQL2000 dbase from a backup only?can someone point me here?Herb |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2005-08-26 : 16:29:46
|
| BACKUP DATABASE DBNameGoesHereTO DISK = 'C:\SomeBackupFile.BAK'RESTORE DATABASE NewDBNameFROM DISK = 'C:\SomeBackupFile.BAK'WITH REPLACE, MOVE...(check RESTORE DATABASE in SQL Server Books Online for the specific syntax)Tara |
 |
|
|
Kristen
Test
22859 Posts |
|
|
|
|
|