Added python/read_write_file.sh

This commit is contained in:
Floris van Enter
2017-12-14 12:18:37 +01:00
parent 9f918ead05
commit 483b01e2e1
8 changed files with 231 additions and 1 deletions

View File

@ -0,0 +1,42 @@
/*
SQL Server Backup script - SQL Server 2008, SQL Server 2008 R2, SQL Server 2012, SQL Server 2014, and SQL Server 2016
You can contact me by e-mail at floris@entermi.nl.
Last updated 1 December, 2017.
Floris van Enter
http://entermi.nl
*/
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:\Program Files\Microsoft SQL Server\MSSQL13.TEST\MSSQL\Backup\'
-- specify filename format
SELECT @fileDate = CONVERT(VARCHAR(20),GETDATE(),112)
DECLARE db_cursor CURSOR READ_ONLY FOR
SELECT name
FROM master.dbo.sysdatabases
WHERE name NOT IN ('tempdb')
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

View File

@ -1,3 +1,16 @@
/*
SQL Server Database overview - SQL Server 2008, SQL Server 2008 R2, SQL Server 2012, SQL Server 2014, and SQL Server 2016
You can contact me by e-mail at floris@entermi.nl.
Last updated 1 December, 2017.
Floris van Enter
http://entermi.nl
*/
USE master;
GO

View File

@ -1,3 +1,16 @@
/*
SQL Server Instance information script - SQL Server 2008, SQL Server 2008 R2, SQL Server 2012, SQL Server 2014, and SQL Server 2016
You can contact me by e-mail at floris@entermi.nl.
Last updated 1 December, 2017.
Floris van Enter
http://entermi.nl
*/
SELECT
SERVERPROPERTY('MachineName') AS ComputerName,
SERVERPROPERTY('ServerName') AS InstanceName,