After reviewing the server and database properties, the next step is to review the database configurations using the sys.databases metadata. There's a such object even for warehouse and lakehouse, respectively for mirrored databases.
Except the last line from the query, all the other attributes are supported by all above mentioned repositories.
-- database metadata SELECT db.name , db.database_id --, db.source_database_id , db.owner_sid , db.create_date , db.compatibility_level , db.collation_name --, db.user_access , db.user_access_desc --, db.is_read_only --, db.is_auto_close_on --, db.is_auto_shrink_on --, db.state , db.state_desc --, db.is_in_standby --, db.is_cleanly_shutdown --, db.is_supplemental_logging_enabled --, db.snapshot_isolation_state , db.snapshot_isolation_state_desc --, db.is_read_committed_snapshot_on --, db.recovery_model , db.recovery_model_desc , db.page_verify_option , db.page_verify_option_desc , db.is_auto_create_stats_on --, db.is_auto_create_stats_incremental_on , db.is_auto_update_stats_on --, db.is_auto_update_stats_async_on --, db.is_ansi_null_default_on --, db.is_ansi_nulls_on --, db.is_ansi_padding_on --, db.is_ansi_warnings_on --, db.is_arithabort_on --, db.is_concat_null_yields_null_on --, db.is_numeric_roundabort_on --, db.is_quoted_identifier_on --, db.is_recursive_triggers_on --, db.is_cursor_close_on_commit_on --, db.is_local_cursor_default , db.is_fulltext_enabled --, db.is_trustworthy_on , db.is_db_chaining_on --, db.is_parameterization_forced , db.is_master_key_encrypted_by_server --, db.is_query_store_on --, db.is_published --, db.is_subscribed --, db.is_merge_published --, db.is_distributor --, db.is_sync_with_backup , db.service_broker_guid --, db.is_broker_enabled --, db.log_reuse_wait , db.log_reuse_wait_desc --, db.is_date_correlation_on --, db.is_cdc_enabled --, db.is_encrypted --, db.is_honor_broker_priority_on --, db.replica_id --, db.group_database_id --, db.resource_pool_id --, db.default_language_lcid --, db.default_language_name --, db.default_fulltext_language_lcid --, db.default_fulltext_language_name --, db.is_nested_triggers_on --, db.is_transform_noise_words_on --, db.two_digit_year_cutoff --, db.containment --, db.containment_desc , db.target_recovery_time_in_seconds --, db.delayed_durability --, db.delayed_durability_desc --, db.is_memory_optimized_elevate_to_snapshot_on --, db.is_federation_member --, db.is_remote_data_archive_enabled --, db.is_mixed_page_allocation_on , db.is_temporal_history_retention_enabled --, db.catalog_collation_type , db.catalog_collation_type_desc , db.physical_database_name --, db.is_result_set_caching_on , db.is_accelerated_database_recovery_on --, db.is_tempdb_spill_to_remote_store --, db.is_stale_page_detection_on , db.is_memory_optimized_enabled , db.is_data_retention_enabled --, db.is_ledger_on --, db.is_change_feed_enabled --, db.is_data_lake_replication_enabled --, db.is_change_streams_enabled --, db.data_lake_log_publishing , db.data_lake_log_publishing_desc , db.is_vorder_enabled --, db.is_optimized_locking_on FROM sys.databases db
Output (consolidated):
Attribute | Warehouse | Mirrored Db | Lakehouse | SQL database |
name | Warehouse Test 001 | MirroredDatabase_1 | Lakehouse_DWH | SQL DB Test... |
database_id | 5 | 6 | 7 | 28 |
owner_sid | 0x01010000000000051... | 0x01010000000000051... | x01010000000000051... | AAAAAAWQAAAAAA... |
create_date | 2025-02-22T18:56:28.700 | 2025-03-16T14:57:56.600 | 2025-03-16T15:07:59.563 | 2025-02-22T03:01:53.7130000 |
compatibility_level | 160 | 160 | 160 | 160 |
collation_name | Latin1_General_100_BIN2_UTF8 | Latin1_General_100_BIN2_UTF8 | Latin1_General_100_BIN2_UTF8 | SQL_Latin1_General_CP1_CI_AS |
user_access_desc | MULTI_USER | MULTI_USER | MULTI_USER | MULTI_USER |
state_desc | ONLINE | ONLINE | ONLINE | ONLINE |
snapshot_isolation_state_desc | ON | ON | ON | ON |
recovery_model_desc | SIMPLE | SIMPLE | SIMPLE | FULL |
page_verify_option | 0 | 0 | 0 | 2 |
page_verify_option_desc | NONE | NONE | NONE | CHECKSUM |
is_auto_create_stats_on | 1 | 1 | 1 | 1 |
is_auto_update_stats_on | 1 | 1 | 1 | 1 |
is_fulltext_enabled | 1 | 1 | 1 | 1 |
is_db_chaining_on | 0 | 0 | 0 | 0 |
is_master_key_encrypted_by_server | 0 | 0 | 0 | 0 |
service_broker_guid | 1F2261FC-5031-... | 7D882362-567E-... | 0D8938AB-BA79-... | 2b74bed3-4405-... |
log_reuse_wait_desc | NOTHING | NOTHING | NOTHING | NOTHING |
target_recovery_time_in_seconds | 60 | 60 | 60 | 60 |
is_temporal_history_retention_enabled | 1 | 1 | 1 | 1 |
catalog_collation_type_desc | DATABASE_DEFAULT | DATABASE_DEFAULT | DATABASE_DEFAULT | SQL_Latin1_General_CP1_CI_AS |
physical_database_name | Warehouse Test 001 | MirroredDatabase_1 | Lakehouse_DWH | 3f4a3e79-e53e-... |
is_accelerated_database_recovery_on | 1 | 1 | 1 | 1 |
is_memory_optimized_enabled | 1 | 1 | 1 | 1 |
is_data_retention_enabled | 1 | 1 | 1 | 1 |
data_lake_log_publishing_desc | AUTO | UNSUPPORTED | UNSUPPORTED | UNSUPPORTED |
is_vorder_enabled | 1 | 1 | 1 | 0 |
The output for the SQL database was slightly different formatted and is_vorder_enabled is not available. Otherwise, the above query can be used for all environments.
All attributes except the last two are known from the earlier versions of SQL Server. is_vorder_enabled reflects the current status of V-Order [2], while data_lake_log_publishing_desc reflects the current state of Delta Lake log publishing [3].
Consolidating the output from different sources helps identify the differences and one can easily use Excel formulas for this.
Previous Post <<||>> Next Post
References:
[1] Microsoft Learn (2025) SQL Server 2022: sys.databases
(Transact-SQL) [link]
[2] Microsoft Learn (2025) SQL Server 2022: Disable V-Order on Warehouse in Microsoft Fabric [link]
[3] Microsoft Learn (2025) SQL Server 2022: Delta Lake logs in Warehouse in Microsoft Fabric [link]