Remove Secondary Transaction Log File from Database
At time your database may have multiple Transaction log physical files and you may want to remove one of the Transaction log file from the database. Then run the following script
DBCC SHRINKFILE (,EMPTYFILE)
alter database test remove file
Eg.
DBCC SHRINKFILE ('test1_log',EMPTYFILE)
alter database test remove file Test1_log
Note : The primary data file and log file cannot be removed.
DBCC SHRINKFILE (
alter database test remove file
Eg.
DBCC SHRINKFILE ('test1_log',EMPTYFILE)
alter database test remove file Test1_log
Note : The primary data file and log file cannot be removed.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home