Created
December 2, 2014 06:00
-
-
Save MikeWills/ce2bc1f8f5a887e78b2f to your computer and use it in GitHub Desktop.
Backup all databases on Microsoft SQL Server. Make sure to update the @path before running.
This file contains 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
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 = 'E:\DB_Backups\' | |
-- specify filename format | |
SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112) | |
DECLARE db_cursor CURSOR FOR | |
SELECT name | |
FROM master.dbo.sysdatabases | |
WHERE name NOT IN ('master','model','msdb','tempdb') -- exclude these databases | |
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 | |
FETCH NEXT FROM db_cursor INTO @name | |
END | |
CLOSE db_cursor | |
DEALLOCATE db_cursor |
This file contains 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
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 | |
SET @path = 'E:\DB_Backups\' | |
SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112) | |
+ '_' | |
+ REPLACE(CONVERT(VARCHAR(20),GETDATE(),108),':','') | |
DECLARE db_cursor CURSOR FOR | |
SELECT name | |
FROM master.dbo.sysdatabases | |
WHERE name NOT IN ('master','model','msdb','tempdb') | |
AND DATABASEPROPERTYEX(name, 'Recovery') IN ('FULL','BULK_LOGGED') | |
OPEN db_cursor | |
FETCH NEXT FROM db_cursor INTO @name | |
WHILE @@FETCH_STATUS = 0 | |
BEGIN | |
SET @fileName = @path + @name + '_' + @fileDate + '.TRN' | |
BACKUP LOG @name TO DISK = @fileName | |
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