重命名MSSQL数据库的名称,需要做用以下系统库master提供的存储过程SP_RENAMEDB,语法如下: use master go exec SP_RENAMEDB oldDBName, new DBName go