Last active
March 1, 2016 16:29
-
-
Save ststeiger/3a52a2ceabdb1ec49c36 to your computer and use it in GitHub Desktop.
Check trustworthy databases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| name | |
| ,is_trustworthy_on | |
| ,compatibility_level | |
| ,snapshot_isolation_state_desc | |
| ,recovery_model_desc | |
| --,* | |
| FROM sys.databases | |
| WHERE (1=1) | |
| --AND name <> 'msdb' | |
| AND is_trustworthy_on = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment