Home > Database > Mysql Tutorial > mssql 压缩数据库 检查备份集 修复数据库 sql语句

mssql 压缩数据库 检查备份集 修复数据库 sql语句

WBOY
Release: 2016-06-07 17:47:46
Original
1249 people have browsed it

mssql 压缩数据库 检查备份集 修复数据库 sql语句本教程提供了关于mssql server 压缩数据库 检查备份集 修复数据库的sql语句,并且实例说明的操作方法。

mssql 压缩 检查备份集 修复数据库 sql语句

本教程提供了关于mssql server 压缩数据库 检查备份集 修复数据库的sql语句,并且实例说明的操作方法。
3、压缩数据库

dbcc shrinkdatabase(dbname)


4、转移数据库给新用户以已存在用户权限

exec sp_change_users_login 'update_one','newname','oldname'


go
5、检查备份集

restore verifyonly from disk='e:dvbbs.bak'


6、修复数据库

alter database [dvbbs] set single_user
go
dbcc checkdb('dvbbs',repair_allow_data_loss) with tablock
go
alter database [dvbbs] set multi_user
go

上面的sql语句简单,但作用很大,希望能对你有用。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template