Created
August 4, 2021 09:15
-
-
Save hoangitk/2b25c523fa0bd6143c60acfc04a62a79 to your computer and use it in GitHub Desktop.
[Auto backup all DB] #backup #mssql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
credit: https://www.mssqltips.com/sqlservertip/1070/simple-script-to-backup-all-sql-server-databases | |
*/ | |
DECLARE @name VARCHAR(50) -- database name | |
DECLARE @path VARCHAR(256) -- path for backup files | |
DECLARE @fileName VARCHAR(256) -- filename for backup | |
DECLARE @fileDate VARCHAR(20) -- used for file name | |
-- specify database backup directory | |
SET @path = 'C:\Backup\' | |
-- DBname_YYYYDDMM.BAK | |
-- specify filename format | |
SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112) | |
-- DBname_YYYYDDMM_HHMMSS.BAK | |
--SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112) + '_' + REPLACE(CONVERT(VARCHAR(20),GETDATE(),108),':','') | |
DECLARE db_cursor CURSOR READ_ONLY FOR | |
SELECT name | |
FROM master.sys.databases | |
WHERE name NOT IN ('master','model','msdb','tempdb') -- exclude these databases | |
AND state = 0 -- database is online | |
AND is_in_standby = 0 -- database is not read only for log shipping | |
OPEN db_cursor | |
FETCH NEXT FROM db_cursor INTO @name | |
WHILE @@FETCH_STATUS = 0 | |
BEGIN | |
SET @fileName = @path + @name + '_' + @fileDate + '.BAK' | |
BACKUP DATABASE @name TO DISK = @fileName WITH COMPRESSION | |
FETCH NEXT FROM db_cursor INTO @name | |
END | |
CLOSE db_cursor | |
DEALLOCATE db_cursor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment