Skip to content

Instantly share code, notes, and snippets.

@christophervigliotti
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christophervigliotti/829311cef40540d4f08e to your computer and use it in GitHub Desktop.
Save christophervigliotti/829311cef40540d4f08e to your computer and use it in GitHub Desktop.
back that thang up, where "that thang" is one or more 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 (create this path if it does not exist)
SET @path = 'C:\SQL Server Data\Backup\'
-- specify filename format
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') -- 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
-- gain single-user access to the database
USE master;
GO
ALTER DATABASE thatThang SET SINGLE_USER WITH ROLLBACK IMMEDIATE;
-- restore the database
RESTORE DATABASE thatThang FROM DISK = N'C:\SQL Server Backups\thatThangBackup.bak'
WITH REPLACE
GO
-- return to multi-user mode
ALTER DATABASE thatThang SET MULTI_USER;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment