Last Good Check DB on master database didn't get update #914
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The Last Good Check DB gets updated when you run DBCC CHECKDB. It seems like this isn't been updated. You can run this on your monitored instance to check:
Note: The collection uses this query which accounts for older versions of SQL, but if you are on a reasonably modern version of SQL it's the query above that will run. To fix the problem you can run this on your monitored instance:
You would need to investigate why it's not been run from your agent job though. Once the DBCC check has run on your monitored instance, the last good check DB collection runs every 1hr by default. You will need to wait for the next collection or trigger it to run manually (new feature in 3.5 or restart the service) Hope this helps |
Beta Was this translation helpful? Give feedback.
The Last Good Check DB gets updated when you run DBCC CHECKDB. It seems like this isn't been updated. You can run this on your monitored instance to check:
Note: The collection uses this query which accounts for older versions of SQL, but if you are on a reasonably modern version of SQL it's the query above that will run.
To fix the problem you can run this on your monitored instance:
You would need to investigate why it's not been run from your agent job though.
Once the DBCC check has run on your mo…