How to tell if you are using SQL Backup?
gsc_ghx
Posts: 73
I am new to sql server dba and have never used this software (SQL Backup) and there is no one who can tell me if they use the Redgate software for backups. How would i know?
Thanks
g
Thanks
g
Comments
Open the Service Manager, look for a service beginning with the name 'SQL Backup Agent'.
Is it being used to perform backups?
Open Query Analyzer or Management Studio, run the following (this query will be slow if you have a lot of data):
Has it ever been used to perform backups?
Open Query Analyzer or Management Studio, run the following (this query will be slow if you have a lot of data):
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
FROM msdb..backupmediafamily a
INNER JOIN msdb..backupset b ON a.media_set_id = b.media_set_id
WHERE b.backup_start_date >= GETDATE() - 7
AND a.logical_device_name LIKE 'Red Gate SQL Backup%'
it returns a value Red Gate SQL Backup (4.2.0.511):00000000036300000000000000C2760000005C17000000030101 - does the 4.2.0.511 refer to the version of backup software we are using?
Also - how would i find out what servers are running which license we have? I need to identify which servers have which license...
Thank you...
If you use the SQL Backup GUI and register your servers, those with SQL Backup installed will display a SQL Backup icon in its name.
If you want to check manually, run the following:
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
Hi...using SQL backup we can tell with below solution-
SQL Server Full Database Backups
SQL Server Transaction Log Backups
SQL Server Differential Backups
SQL Server File\File Group Backups
SELECT database_name, backup_start_date, type, * FROM msdb.dbo.backupset WHERE backup_start_date BETWEEN DATEADD(hh, -24, GETDATE()) AND GETDATE() AND Type = 'F' ORDER BY backup_set_id DESC GO