...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
--The query below will return values for each database
--Check that the values for the Synergetic databases match the comments, eg. is_trustworthy_on = 1, is_broker_enabled = 1
USE master
GO
select
name,
is_trustworthy_on, --1
suser_sname(owner_sid), --sa
is_db_chaining_on, --0
is_auto_shrink_on, --0
is_broker_enabled, --1
snapshot_isolation_state_desc, --1
is_read_committed_snapshot_on, --1
compatibility_level, --130
page_verify_option_desc, --CHECKSUM
is_auto_update_stats_on, --1
is_auto_update_stats_async_on, --1
is_auto_close_on --0
from sys.databases |
...