English 中文(简体)
确定退学是否退学
原标题:Query to determine if Backup Exec is taking backups

Does anyone know any tactics to determine if backup exec is taking backup? We do not have access to the program to determine if it is in charge but are receiving alerts for failed backups. If you run the select * from dbo.backupmediaset for System databases it normally returns what software is being used, however Backup Exec will still return SQL Server.

后继器战术也不适用于任何用户数据库,因为它只包括在ms制系统中。

任何帮助都将受到高度赞赏。 成就

问题回答

你们是否尝试使用拖船,而不是拖船?

SELECT TOP 20 database_name,
              type,
              backup_start_date, 
              backup_finish_date,
              compressed_backup_size,
              backup_size
FROM   msdb.dbo.backupset
ORDER  BY backup_set_id DESC; 

这就是我使用的情况,背书表格应当有一个历史,所有备份都应在座机上运行,除非有人手工提炼这个表格,而这个表格经常被忽视。

More details at my blog: http://stevestedman.com/2012/01/latest-backups/

我希望这一帮助。 一天!





相关问题
Backing up my database is taking too long

On a windows mobile unit, the software I m working on relies on a sdf file as it s database. The platform that the software is targeted towards is "less than optimal" and hard resets every once and a ...

Cognos LAE Backup Automation (Batch File?)

Within Cognos 7.4 security.. one would create an LAE file to export all their users... directions here... http://www.cognos-install.co.uk/articles/backups/access_manager_export_to_lae.asp Now you ...

backup SQL Server 2005 database without data

I have one stored procedure to backup the database. It will backup metadata as well as data. Is there any option to back up the database with out data. ie, back up only the schema (Empty tables). I ...

SQL Server 2008 Auto Backup

We want to have our test servers databases updated from our production server databases on a nightly basis to ensure we re developing on the most recent data. We, however, want to ensure that any fn, ...

mysql dump stops when a row is updated

When i try to get a dump of a mysql database, the dump stops when a row in it is updated. How can i prevent that? I already tried following options with no result: -f (forces continu even when error)...

热门标签