Is there way to rename Database of SQL Server 2000??
Help Me!!!!!!!!!!!!
Printable View
Is there way to rename Database of SQL Server 2000??
Help Me!!!!!!!!!!!!
Is this a Reporting question or should it belong in the Database forum.
There is a stored procedure called sp_renamedB.
Example from msdn
This example changes the name of the accounting database to financial.
EXEC sp_renamedb 'accounting', 'financial'