How you can change the database name in SQL SERVER?
Aman Singh
USE MASTER; GO ALTER DATABASE DatabaseName MODIFY NAME= NewDatabasename;