Is it possible to rename a database in SQL Server 2000? If not, is it possible to copy the tables and relationship diagram from one to another? The database is new, so there are no records to copy. I just want to rename it, because redoing the tables would take too much energy (<----Lazy). :)
You can set the database to single user mode (gotta kick out all the users first), then run sp_renamedb, then set it back to multi-user. Works like a charm and takes under 30 seconds.