--SQL分离附加语句:
--数据库名: Mydb
--数据文件存放路径:c:/test/Mydb.mdf
--日志文件存放路径:c:/test/Mydb_log.mdf
--1、分离:
sp_detach_db Mydb,true
--2、附加:
sp_attach_db 'Mydb','c:/test/Mydb.mdf','c:/test/Mydb_log.ldf'
--SQL分离附加语句:
--数据库名: Mydb
--数据文件存放路径:c:/test/Mydb.mdf
--日志文件存放路径:c:/test/Mydb_log.mdf
--1、分离:
sp_detach_db Mydb,true
--2、附加:
sp_attach_db 'Mydb','c:/test/Mydb.mdf','c:/test/Mydb_log.ldf'