SQL Server database practical tips

Source: Internet
Author: User
This includes prompting pending operations, shrinking databases, compressing databases, transferring databases to new users with existing user permissions, checking backup sets, and restoring databases during installation.
(1) pending operations
When installing the SQL or SP patch, the system prompts that a pending installation operation is required. Restart is often useless. solution: HKEY_LOCAL_MACHINE \ SYSTEM \ CurrentControlSet \ Control \ Session Manager
Delete Pendingfilerenameoperations
(2) shrinking the database
-- Re-Indexing DBCC reindex DBCC indexdefrag
-- Shrink data and logs DBCC shrinkdb DBCC shrinkfile
(3) compressing the database DBCC shrinkdatabase (dbname)
(4) Transfer the database to a new user with existing User Permissions Exec sp_change_users_login 'Update _ one', 'newname', 'oldname' go
(5) Check the backup set Restore verifyonly from disk = 'e: \ dvbbs. Bak'
(6) database Restoration Alter database [dvbbs] Set single_user go DBCC checkdb ('dvbbs ', repair_allow_data_loss) WItH tablock go alter database [dvbbs] Set multi_user go -- checkdb has three parameters: -- repair_allow_data_loss
-- Execute all the repairs completed by repair_rebuild, including allocating and unassigning rows and pages to correct the allocation errors, structure row or page errors, and deleting corrupted text objects. These fixes may cause some data loss. The repair operation can be completed under the user transaction to allow the user to roll back the changes. If the rollback is fixed, the database will still contain errors and the backup should be restored. If an error fix is missing due to the severity of the severity level provided, it will omit any fix that depends on the fix. After the restoration, back up the database.
-- Repair_fast Performs small and time-consuming repair operations, such as fixing the additional keys in non-clustered indexes. These repairs can be completed quickly without the risk of data loss.
-- Repair_rebuild: execute all the repairs completed by repair_fast, including repairs that require a long period of time (such as re-indexing ). There is no risk of data loss when performing these repairs. -- DBCC checkdb ('dvbbs ') with no_infomsgs, physical_only
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.