Back to Browse

Post Configuration steps for MS SQL SERVER Part 2 | Back up compression | Auto close

998 views
Jul 30, 2023
3:47

Join this channel to get access to perks: https://www.youtube.com/channel/UC6PK1AEcqGp81GWpq_GNJpg/join Join the whats app Group for the scripts and assistance: https://chat.whatsapp.com/LBDdY1UA0Sn8VjarhMeV7j ======================== --select name, is_auto_close_on FROM sys.databases -- Generate the script to set AUTO_CLOSE to OFF for all databases USE master; Go DECLARE @sql NVARCHAR(MAX) = N''; SELECT @sql += N'ALTER DATABASE [' + name + N'] SET AUTO_CLOSE OFF;' + CHAR(13) FROM sys.databases where is_auto_close_on = 1 EXEC(@sql); --===================================== --Enabling the compression at server level IF EXISTS(select * from sys.configurations where name = 'backup compression default' AND value = 0) BEGIN EXEC sp_configure 'backup compression default', 1 ; RECONFIGURE; END ====================================== You Can Also Download the scripts from below folder https://drive.google.com/drive/folders/1vzcHXjQWuPmIRlB-QHbh37z4Qs_CrzUT?usp=sharing We strongly believe there is always chance of betterment, so suggestions are most welcome. Happy learning, and best of luck in your professional journey! The journey of improvement is ongoing and never be an end. Thank you! MS SQL DBA Tech Support

Download

0 formats

No download links available.

Post Configuration steps for MS SQL SERVER Part 2 | Back up compression | Auto close | NatokHD