博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数据库改名系列(数据库名,逻辑名,物理文件名)
阅读量:6289 次
发布时间:2019-06-22

本文共 1028 字,大约阅读时间需要 3 分钟。

汇总篇:

某系统设计的不是很合理,库很多,图形化操作分离都得搞半天,各种改名也就更浪费时间了,于是引入了命令~(SQLServer现在已经在Linux里面跑了,咱们也得跟上时代)

1.数据库名修改前

alter database Test modify name=NewTest or exec sp_renamedb 'Test','NewTest'

2.数据库名修改后

3.物理文件名和逻辑名并没有变化

4.逻辑名修改前后

alter database NewTest modify file(name=N'Test', newname=N'NetTest')

5.逻辑名发生改变物理文件名不变

6.物理改名很多种(我这边的本质就是分离后修改,因为占用状态是没法修改的)

其实并没有什么新的sql,都是组合版的

exec xp_cmdshell 'rename E:\SQL\Test.mdf NewTest.mdf'

效果:

SQL:

use mastergo--1.分离exec sp_detach_db NewTestgo--2.改名(这一步可以换成手动改名字)exec sp_configure 'show advanced options',1 --显示高级选项reconfigure with override--重新配置	exec sp_configure 'xp_cmdshell',1 --1代表允许,0代表阻止	reconfigure with override		exec xp_cmdshell 'rename E:\SQL\Test.mdf NewTest.mdf'		go		exec xp_cmdshell 'rename E:\SQL\Test_log.ldf NewTest_log.ldf'		go	exec sp_configure 'xp_cmdshell',0	reconfigure with overrideexec sp_configure 'show advanced options',0reconfigure with override--3.附加exec sp_attach_db NewTest,N'E:\SQL\NewTest.mdf',N'E:\SQL\NewTest_log.ldf'

 

转载于:https://www.cnblogs.com/dunitian/p/6165998.html

你可能感兴趣的文章