Skip to content

Instantly share code, notes, and snippets.

@ststeiger
Last active March 1, 2016 16:29
Show Gist options
  • Select an option

  • Save ststeiger/3a52a2ceabdb1ec49c36 to your computer and use it in GitHub Desktop.

Select an option

Save ststeiger/3a52a2ceabdb1ec49c36 to your computer and use it in GitHub Desktop.
Check trustworthy databases
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