在 C# 中检查上次数据库备份日期 - SQL Server 2008

发布于 2024-12-06 23:45:46 字数 65 浏览 0 评论 0 原文

我有一个 C# Windows 窗体应用程序,当加载启动窗体时,我想检查上次对应用程序连接到的数据库执行备份的时间。

I have a C# windows Forms application and when the start-up Form loads, i want to check the last time a backup was performed on the database the application connects to.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无人问我粥可暖 2024-12-13 23:45:46

您可以创建一个为您完成工作的存储过程。然后您可以在表单的 OnLoad 事件中或任何适合您需要的地方执行它。

请看下面的内容,了解可以实现此目的的 T-SQL

http://www.mssqltips.com/sqlservertip/1601/script-to-retrieve-sql-server-database-backup-history-and-no-backups/

you could create a store procedure that does the work for you. then you can execute it within the form's OnLoad event or where ever it fits for your need.

Have a look at the below for getting the T-SQL that does the trick

http://www.mssqltips.com/sqlservertip/1601/script-to-retrieve-sql-server-database-backup-history-and-no-backups/

甜尕妞 2024-12-13 23:45:46

这些取自我的自动化备份:

首先获取所有数据库的列表,包括其数据库 GUID:

select db.name, db.database_id, rec.database_guid
  from sys.databases db
    inner join sys.database_recovery_status rec on db.database_id = rec.database_id
  where db.source_database_id is null and db.name <> 'tempdb'

source_database_id 上的条件不包括快照。

然后使用上面的 GUID,获取上次非 COPY_ONLY完整备份type='D'的日期:

SELECT MAX(backup_finish_date) as backup_finish_date
  from msdb..backupset
  where type='D' and database_guid = @DbGuid and is_copy_only=0

These are taken from my automation of backups:

First get a list of all databases, including their database GUID:

select db.name, db.database_id, rec.database_guid
  from sys.databases db
    inner join sys.database_recovery_status rec on db.database_id = rec.database_id
  where db.source_database_id is null and db.name <> 'tempdb'

The condition on source_database_id excludes snapshots.

Then using the GUID from the above, get the date of the last full backup type='D' that isn't COPY_ONLY:

SELECT MAX(backup_finish_date) as backup_finish_date
  from msdb..backupset
  where type='D' and database_guid = @DbGuid and is_copy_only=0
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文