Backup times
crimdon
Posts: 54 Bronze 3
Does anyone know where SQL Backup stores the data for time taken and if its possible to retrieve this in a report?
Comments
The backup and restore information see in the Activity History is held the data.sdf for the SQL Instance. The data.sdf file is a SQL Server Compact Edition file, created when you install the SQL Backup Server Components. By default, you will find the data.sdf file in this path on the SQL Server: C:ProgramDataRed GateSQL BackupData<SQL Instance Name>
You can use SSMS to connect and query the data.sdf file.
There is a reporting feature within SQL Backup, further information can be found HERE.
Many Thanks
Eddie
Senior Product Support Engineer
Redgate Software Ltd
Email: support@red-gate.com
First, when I use SSMS 2008R2 to connect to the Compact Edition database I am prompted for a password. I have tried my Backup Agent account password, the SQL Engine Account password, and the SQL Agent password with no luck.
What is the password for this file and where/when/how is it set?
Second, when I tried to connect with SSMS 2014/2016 I don't see a entry for Compact Edition in the Connect dialog. Is this really true?
Thanks,
Another option to access the tables is via the sqbdata extended stored procedure e.g. in SSMS when connected to your SQL Server instance:
EXEC master..sqbdata 'SELECT * FROM backuphistory'
The tables are:
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8