码迷,mamicode.com
首页 > 数据库 > 详细

Maintenance Plan Usage4:Check Integrity and Shrink database

时间:2016-01-25 22:52:34      阅读:424      评论:0      收藏:0      [点我收藏+]

标签:

一,Check Database Integrity Task

check the allocation and structural integrity of user and system tables, and indexes in the database, by running the DBCC CHECKDB Transact-SQL statement. Running DBCC ensures that any integrity problems with the database are reported, thereby allowing them to be addressed later by a system administrator or database owner.

Include indexes

Check the integrity of all the index pages as well as the table data pages.

View TSQL Code

--include inedexes
DBCC CHECKDB(NDB_Study)  WITH NO_INFOMSGS

--Not included index
DBCC CHECKDB(NDB_Study, NOINDEX)


二,Shrink Database Task

Use the Shrink Database Task dialog to create a task that attempts to reduce the size of the selected databases. Use the options below to determine the amount of unused space to remain in the database after the database is shrunk (the larger the percentage, the less the database can shrink). The value is based on the percentage of the actual data in the database. For example, a 100-MB database containing 60 MB of data and 40 MB of free space, with a free space percentage of 50 percent, would result in 60 MB of data and 30 MB of free space (because 50 percent of 60 MB is 30 MB). Only excess space in the database is eliminated. Valid values are from 0 through 100.

Shrinking data files recovers space by moving pages of data from the end of the file to unoccupied space closer to the front of the file. When enough free space is created at the end of the file, data pages at end of the file can deallocated and returned to the file system.

Caution: Data that is moved to shrink a file can be scattered to any available location in the file. This causes index fragmentation and can slow the performance of queries that search a range of the index. To eliminate the fragmentation, consider rebuilding the indexes on the file after shrinking.

 

技术分享

 

View TSQL Code

--Retain freed space in database files
DBCC SHRINKDATABASE(NDB_Study, 10, TRUNCATEONLY)

--Return freed space to OS
DBCC SHRINKDATABASE(NDB_Study, 10, NOTRUNCATE)

 

Maintenance Plan Usage4:Check Integrity and Shrink database

标签:

原文地址:http://www.cnblogs.com/ljhdo/p/5158813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!