Here is a DMV script to check whether a or any database has the auditing configured and running, along with few other useful attributes if it does. Few things to keep in mind: Auditing is available from SQL version 2008 and up.... Until very recently (SQL version 2016 and up), granual (object level) auditing at the database level is available only on Enterprise edition. Although you could still use server level auditing to setup auditing at the database level So keeping that in mind, I wrote this in a way to be able to execute as a multi-server query either using CMS or just a bunch of locally registered servers. If you are running this as a multi-server script, you should turn on the "Merge Results" setting in the SSMS. Finally, if you feel that this script is unncessarily complicated, its because it is written in a way so that it can be executed against any version and editon of sql server, whether it supports auditing or not! Hope you find this use and please feel free to...