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 |
|
AskSQLTeam
Ask SQLTeam Question
0 Posts |
Posted - 2005-05-17 : 07:27:11
|
| Phillip writes "I can find plenty of info regarding copying a database from one server to another. However, I cannot find info on making a local copy and renaming it. I have designed a standard database product and this database is seeded with a customer independant set of data. I now want to make a copy for each customer so that all the sql server files are renamed with the customer name.I have found that i can restore a database with a new name but the underlying logical names of the files do not change.Hope you can helpregardsPhil" |
|
|
robvolk
Most Valuable Yak
15732 Posts |
Posted - 2005-05-17 : 07:30:00
|
| ALTER DATABASE will let you rename logical files, but there's no reason or advantage in doing so. In fact it would make it impossible to restore a backup if the logical names have been changed. |
 |
|
|
|
|
|