欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SQL SERVER 常用命令

程序员文章站 2024-01-30 15:30:28
...

1.修改数据库的行数据和日志文件数据

/*设置脱机*/
alter database testDB set offline
/*逻辑移动*/
use master;
go
alter database testDB 
modify file
(
 name = testDB ,
 filename = N'E:\DATABASE\testDB .mdf'
);
go
alter database testDB 
modify file
(
 name = testDB _log,
 filename = N'E:\DATABASE\testDB _log.ldf'
);
go
/*数据库开机*/
alter database testDB set online;;