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 |
|
revanth
Starting Member
2 Posts |
Posted - 2007-09-10 : 05:11:44
|
| Hi,which command is used to rename the database?regards,revanthrevanth babu |
|
|
PeterNeo
Constraint Violating Yak Guru
357 Posts |
Posted - 2007-09-10 : 05:46:21
|
| ALTER DATABASE <dbname>MODIFY NAME = new_database_name read about it in BOL |
 |
|
|
rmiao
Master Smack Fu Yak Hacker
7266 Posts |
Posted - 2007-09-10 : 22:03:24
|
| Use sp_renamedb in sql2k. |
 |
|
|
|
|
|