Using T-SQL, I can get the last known good DBCC Checkdb through DBCC DBINFO().
My question is, can I find, somewhere in SQL, when the Last DBCC Checkdb Ran? (regardless of being successful or not)
I would need this info to compare the Last date it ran with the last known good DBCC checkdb so that I can take action if the dates don't match.
Since I'm on SQL Express, I can't use SQL Server Agent to run the DBCC checkdb so it can be run randomly.
Any help is greatly appreciated. Thank you