DMV Comparison for SQL Server 2019 vs Azure SQL Database

Problem

I am used to reviewing Data Management Views (DMVs) on my SQL Server 2019 Instance, either on-prem or on a VM in the cloud. Now, my SQL databases have been migrated to Azure SQL Databases, and some of those DMVs I’ve been using no longer exist or do not return any valuable data. What DMVs were added to Azure SQL Databases, and which DMVs are missing from Azure SQL Databases but still exist on SQL Server 2019 or other versions?

Solution

First, let’s understand which DMVs exist on the SQL Server instance and which on the Azure SQL Database.

To get the list of all the DMVs on any instance, we can execute the following query once from any database:

SELECT schema_name(schema_id) as schema_name, name
FROM sys.system_objects
WHERE name LIKE 'dm_%' and type = 'V'
ORDER BY name
GO

If we run the above query on a SQL Server 2019 instance, we will get 275 results; on Azure SQL database, we will get 251.

Let’s see which ones are different:

Exist Only on a SQL Server InstanceExist Only on Azure SQL Database
dm_broker_connectionsdm_change_feed_errors
dm_cache_hit_statsdm_change_feed_log_scan_sessions
dm_cache_sizedm_cloud_database_epoch
dm_cache_statsdm_column_encryption_enclave_properties
dm_column_encryption_enclave_operation_statsdm_continuous_copy_status
dm_cryptographic_provider_propertiesdm_database_backup_lineage
dm_db_external_language_statsdm_database_backups
dm_db_external_script_execution_statsdm_database_engine_configurations
dm_db_mirroring_auto_page_repairdm_database_external_governance_sync_state
dm_db_mirroring_connectionsdm_database_external_policy_actions
dm_db_mirroring_past_actionsdm_database_external_policy_principal_assigned_actions
dm_db_rda_migration_statusdm_database_external_policy_principals
dm_db_rda_schema_update_statusdm_database_external_policy_role_actions
dm_distributed_exchange_statsdm_database_external_policy_role_members
dm_exec_query_parallel_workersdm_database_external_policy_roles
dm_filestream_non_transacted_handlesdm_database_hs_log_rate
dm_hadr_ag_threadsdm_database_managed_identities
dm_hadr_auto_page_repairdm_database_replica_states
dm_hadr_automatic_seedingdm_db_data_pool_nodes
dm_hadr_availability_group_statesdm_db_objects_impacted_on_version_change
dm_hadr_availability_replica_statesdm_db_resource_governor_configuration
dm_hadr_clusterdm_db_resource_stats
dm_hadr_cluster_membersdm_db_storage_pool_nodes
dm_hadr_cluster_networksdm_db_wait_stats
dm_hadr_database_replica_cluster_statesdm_db_workload_group_resource_stats
dm_hadr_database_replica_statesdm_db_xtp_undeploy_status
dm_hadr_db_threadsdm_dist_requests
dm_hadr_instance_node_mapdm_dw_quality_clustering
dm_hadr_name_id_mapdm_dw_quality_delta
dm_hadr_physical_seeding_statsdm_dw_quality_index
dm_io_backup_tapesdm_dw_quality_row_group
dm_io_cluster_shared_drivesdm_elastic_pool_resource_stats
dm_io_cluster_valid_path_namesdm_exec_distributed_tasks
dm_logpool_hashentriesdm_exec_requests_history
dm_logpool_statsdm_external_data_processed
dm_os_buffer_pool_extension_configurationdm_external_governance_sync_state
dm_os_child_instancesdm_external_governance_synchronizing_objects
dm_os_cluster_nodesdm_external_policy_cache
dm_os_cluster_propertiesdm_external_policy_excluded_role_members
dm_os_enumerate_fixed_drivesdm_geo_replication_link_status
dm_os_host_infodm_io_network_traffic_stats
dm_os_loaded_modulesdm_operation_status
dm_os_process_memorydm_os_memory_allocations_filtered
dm_os_server_diagnostics_log_configurationsdm_os_memory_health_history
dm_os_sys_memorydm_os_out_of_memory_events
dm_os_virtual_address_dumpdm_os_parent_block_descriptors
dm_os_windows_infodm_pal_ring_buffers
dm_pal_cpu_statsdm_request_phases
dm_pal_disk_statsdm_resource_governor_resource_pools_history_ex
dm_pal_net_statsdm_resource_governor_workload_groups_history_ex
dm_pal_processesdm_server_external_policy_actions
dm_pal_spinlock_statsdm_server_external_policy_principal_assigned_actions
dm_pal_vm_statsdm_server_external_policy_principals
dm_pal_wait_statsdm_server_external_policy_role_actions
dm_repl_articlesdm_server_external_policy_role_members
dm_repl_schemasdm_server_external_policy_roles
dm_repl_tranhashdm_server_managed_identities
dm_repl_traninfodm_tran_distributed_transaction_stats
dm_resource_governor_configurationdm_tran_orphaned_distributed_transactions
dm_resource_governor_external_resource_pool_affinitydm_user_db_resource_governance
dm_resource_governor_external_resource_poolsdm_xe_database_session_event_actions
dm_resource_governor_resource_pool_affinitydm_xe_database_session_events
dm_resource_governor_resource_pool_volumesdm_xe_database_session_object_columns
dm_server_audit_statusdm_xe_database_session_targets
dm_server_memory_dumpsdm_xe_database_sessions
dm_server_registry 
dm_server_services 
dm_tcp_listener_states 
dm_tran_persistent_version_store 
dm_xe_session_event_actions 
dm_xe_session_events 
dm_xe_session_object_columns 
dm_xe_session_targets 
dm_xe_sessions 

Microsoft provides documentation about most of the above DMVs for our convenience. However, some of the new or unused DMVs are still not documented. We can only assume by their name what information they may or will contain in the future, but we will need to query them to check if they contain any valuable data.

To make it easier, this tip will explain each DMV on Azure SQL Databases (if documented) and have been grouped by specific categories:

  1. Performance
  2. High Availability, Disaster Recovery, Backup, and Maintenance
  3. Resource Governor
  4. Extended Events
  5. Security
  6. Synapse Link
  7. Compatible with Synapse
  8. Undocumented or Not Supported by the Azure SQL Database Version – I will try to make some assumptions about what the DMV is about, if possible.

The following sections contain descriptions of each DMV (if officially documented) and a link to the Microsoft documentation.

In future tips, I will provide some examples around the important DMVs below, per category, so stay tuned!

Category #1: Performance

The performance DMVs assist us in monitoring specific performance issues.

DMV Name / Link to DocumentationSub CategoryDescription
dm_db_resource_statsPerformanceReturns CPU, I/O, and memory consumption for a database in Azure SQL Database
dm_db_wait_statsPerformanceReturns information about all the waits encountered by threads that are currently being executed
dm_elastic_pool_resource_statsPerformanceReturns resource usage statistics for the elastic pool containing the current database on an Azure SQL Database logical server. This includes CPU, Data IO, Log IO, storage consumption, and concurrent request/session utilization by the pool. The view returns the same data in any database in the same elastic pool.
dm_os_out_of_memory_eventsPerformanceReturns a log of out of memory (OOM) events.

Category #2: High Availability (HA), Disaster Recovery (DR), Backup, and Maintenance

The Microsoft documentation about Azure SQL Database HA and DR states, “Azure SQL Database service automatically ensures all the databases are online, healthy, and constantly strives to achieve the published SLA.”

It talks about the different types of availability configurations for Azure SQL Databases.

In a nutshell, Azure SQL Database automatically maintains availability, but you can have additional setup, such as:

  • Enable failover groups for DR or reporting purposes.
  • Enable geo-replication to have your readable secondary in a different Azure region.

These views will return information about the current setup.

For Azure SQL database backups, they are automatically managed by Azure, and the backup storage can be configured for additional redundancy (geo-, local, or zone redundancies). The T-logs will be backed up at a frequency that depends on the machine size and the data volumes.

Refer to the following for Microsoft documentation:

DMV Name / Link to DocumentationSub CategoryDescription
dm_continuous_copy_statusGeo ReplicationThis view has been superseded by sys.dm_geo_replication_link_status and is preserved for backward compatibility. Contains a row for each replication link between primary and secondary databases in a geo-replication partnership
dm_geo_replication_link_statusAvailabilityContains a row for each replication link between primary and secondary databases in a geo-replication partnership
dm_database_backupsBackupReturns information about backups of a database in an Azure SQL Database server
dm_database_replica_statesAvailabilityReturns state information for each database that participates in primary and secondary replicas
dm_db_objects_impacted_on_version_changeMaintenanceThis database-scoped system view is designed to provide an early warning system to determine objects that will be impacted by a major release upgrade in Azure SQL Database
dm_operation_statusDatabase level changesReturns information about operations performed on databases in an Azure SQL Database server

Category #3: Resource Governor

The Resource Governor allows for managing system resource consumption by classifying workloads and assigning resource limits to each workload group. Microsoft uses the Resource Governor on Azure SQL Databases to help govern resource utilization, such as IOPs (local and remote), CPU, memory, worker counts, session counts, memory grant limits, and the maximum number of concurrent requests. Some of the following DMVs will not provide valuable data on a single Azure SQL Database (i.e., returns 0’s) but may show some important information when including your database in an elastic pool.

DMV Name / Link to DocumentationSub CategoryDescription
dm_db_resource_governor_configurationResource GovernorReturns a row that contains the current in-memory configuration state of Resource Governor
dm_resource_governor_resource_pools_history_exResource GovernorEach row represents a periodic snapshot of resource pool statistics in Azure SQL Database and Azure SQL Managed Instance
dm_resource_governor_workload_groups_history_exResource GovernorEach row represents a periodic snapshot of workload group statistics in Azure SQL Database
dm_user_db_resource_governanceResource GovernanceReturns actual configuration and capacity settings used by resource governance mechanisms in the current database or elastic pool

Category #4: Extended Events

In this article, Microsoft explains how Extended Events can assist in collecting events happening inside the database. It is lightweight, configurable, and would not affect overall performance. The following DMVs return information about the Extended Events.

DMV Name / Link to DocumentationSub CategoryDescription
dm_xe_database_session_event_actionsDatabase SessionsReturns information about event session actions for active database-scoped sessions. Actions are executed when events are fired
dm_xe_database_session_eventsDatabase SessionsReturns information about session events for active database-scoped session
dm_xe_database_session_object_columnsDatabase SessionsShows the configuration values for objects that are bound to an active database-scoped session
dm_xe_database_session_targetsDatabase SessionsReturns information about active database-scoped session targets
dm_xe_database_sessionsDatabase SessionsReturns information about active database-scoped extended events sessions

Category #5: Security

Always Encrypted “allows clients to encrypt sensitive data inside client applications and never reveal the encryption keys to the Database Engine.”

Database External Policy is a set of rules that define which operations can be performed when connecting to the database from outside Azure.

DMV Name / Link to DocumentationSub CategoryDescription
dm_column_encryption_enclave_propertiesAlways EncryptedUndocumented by itself. Closer description: Returns performance counters for the secure enclave for Always Encrypted
dm_database_external_policy_actionsDatabase External PolicyList all available data actions, independent of being used or not (basically static, returns what could be used)
dm_database_external_policy_principal_assigned_actionsDatabase External Policysys.dm_server_external_policy_principal_assigned_actions and sys.dm_database_external_policy_principal_assigned_actions This set of views joins all 5 from the link provided and, as a result, lists the AAD accounts (currently only the SIDs) together with the external roles they are assigned to and the data actions that those roles provide
dm_database_external_policy_principalsDatabase External PolicyContain a list of all principals (all types of AAD accounts) that have at least the Connect-Action assigned to them
dm_database_external_policy_role_actionsDatabase External PolicyLinks external_actions with external_roles
dm_database_external_policy_role_membersDatabase External PolicyLinks external_principals with external_roles
dm_database_external_policy_rolesDatabase External PolicyAll external roles (Action Groups in Purview) that are in use for the current scope (server or database)
dm_external_policy_cacheServer External PolicyHelps check if external policies are enabled
dm_server_external_policy_actionsServer External PolicyList all available data actions, independent of being used or not
dm_server_external_policy_principal_assigned_actionsServer External PolicyLists all database and server principals created from Microsoft Entra ID (formerly Azure Active Directory), joined with roles, joined with their data actions
dm_server_external_policy_principalsServer External PolicyLists all database and server principals created from Microsoft Entra ID (formerly Azure Active Directory), which are given connect permissions through external policies
dm_server_external_policy_role_actionsServer External PolicyLists the links between the roles and actions and can be used to join the two DMVs sys.dm_server_external_policy_roles and sys.dm_server_external_policy_actions
dm_server_external_policy_role_membersServer External PolicyLists all database and server principals created from Microsoft Entra ID (formerly Azure Active Directory) assigned to a given role on a given resource scope
dm_server_external_policy_rolesServer External PolicyList all available roles, independent of being used or not. Not all roles listed may apply to SQL Server

Category #6: Synapse Link

Azure Synapse Link for SQL “enables near real-time analytics over operational data in Azure SQL Database or SQL Server 2022.”

DMV Name / Link to DocumentationSub CategoryDescription
dm_change_feed_errorsSynapse LinkReturns recent errors from the Azure Synapse Link feature, including change feed, snapshot, or incremental change publish processes
dm_change_feed_log_scan_sessionsSynapse LinkReturns activity for the Azure Synapse Link for SQL change feed

Category #7: Compatible with Synapse

However not documented, it seems Microsoft is keeping some DMVs in the Azure SQL Database to maintain compatibility with Synapse Analytics. In my next tips, I will check to see if those DMVs can be valuably used in Azure SQL Databases.

DMV Name / Link to DocumentationSub CategoryDescription
dm_exec_requests_historySynapse“From Microsoft Support perspective we share the DMV "sys.dm_exec_requests_history" for ticket purposes to help customers better troubleshooting the SQL requests.” (in Synapse)
dm_external_data_processedSynapseTo see how much data was processed during the current day, week, or month (In Synapse)

Category #8: Undocumented / Not Supported on Azure SQL Database

In this section, I have provided the list of DMVs that are not documented. For some of the below, we can assume the expected data they may or will contain in the future. For convenience, I have added the “Assumed Category” and “potential description” for the ones I could understand. Please take my understanding of the below with a grain of salt and keep monitoring the Microsoft documentation for new content. Also, note that most of those DMVs are empty. Hence, it is harder to guess what they are or are meant to be for.

In subsequent tips, I intend to test some of my assumptions by trying to simulate situations that will populate those views.

Do you think I am wrong in my assumption? Leave us a comment!

DMV Name (see potential description of each DMV below)Assumed Category
dm_cloud_database_epochBackup
dm_database_backup_lineageBackup
dm_database_engine_configurationsDatabase/Instance configurations
dm_database_external_governance_sync_statePurview
dm_database_hs_log_rateHA/DR
dm_database_managed_identitiesSecurity (Entra)
dm_db_data_pool_nodesElastic Pool
dm_db_workload_group_resource_statsPerformance
dm_db_xtp_undeploy_statusXTP Storage
dm_dist_requestsDistributed transactions/requests
dm_db_storage_pool_nodesElastic Pool
dm_dw_quality_clusteringData Quality
dm_dw_quality_deltaData Quality
dm_dw_quality_indexData Quality
dm_dw_quality_row_groupData Quality
dm_exec_distributed_tasksDistributed transactions/requests
dm_external_governance_sync_statePurview
dm_external_governance_synchronizing_objectsPurview
dm_external_policy_excluded_role_membersSecurity
dm_io_network_traffic_statsNetwork
dm_os_memory_allocations_filteredOS performance
dm_os_memory_health_historyOS performance
dm_os_parent_block_descriptorsOS performance
dm_pal_ring_buffersMemory
dm_request_phasesDistributed transactions/requests
dm_server_managed_identitiesSecurity (Entra)
dm_tran_orphaned_distributed_transactionsDistributed transactions/requests
dm_tran_distributed_transaction_statsDistributed transactions/requests

The following section provides a description of the content of each undocumented DMV, some additional explanation (if applicable), and my assumption about the role of the DMV. Again, since there is no documentation yet at the time of the writing, my assumptions may be off.

Potential Description of the Undocumented DMVs

dm_cloud_database_epoch

  • “An epoch represents a cutoff point of historical data within the database.” On my instance, I queried this table on March 17 and got the following results:
dm_cloud_database_epoch
  • Shooting in the dark, I found the “8589934592” number here. This is related to the Service Fabric backups.
  • You will find this number in the JSON:
dm_cloud_database_epoch
  • “Azure Service Fabric is a distributed systems platform that makes it easy to package, deploy, and manage scalable and reliable microservices and containers. Service Fabric also addresses the significant challenges in developing and managing cloud native applications.”
  • My assumption Based on the above, this is related to the last snapshot backup of the Azure SQL Database service.

dm_database_backup_lineage

  • Querying the table shows the following:
dm_database_backup_lineage
  • What is the difference between the above and sys.dm_database_backups?
  • Let’s see the latest backup information compared between the two DMVs:
dm_database_backup_lineage
  • Scrolling right for more columns:
dm_database_backup_lineage
  • Now let’s look at the earliest backup information (to see if the two tables contain the same older data):
dm_database_backup_lineage
  • My assumption: My vague assumption is that dm_database_backup_lineage DMV could be the database’s backup metadata history table. This will probably need to be tested over time.

dm_database_engine_configurations

  • This one seems to be easy, database-level configurations:
dm_database_engine_configurations
  • I assume that “TF” is Trace Flag, and the last two are self-explanatory.
  • My assumption: Database or instance-level configurations.

dm_database_external_governance_sync_state

  • I found this article that talks about external governance being related to Purview.
  • The view contains the following columns:
Column_nameTypeComputedLengthPrecScale
database_idintno4100
sync_scopesmallintno250
sync_scope_descnvarcharno120  
sync_statesmallintno250
sync_state_descnvarcharno120  
user_initiated_syncsmallintno250
sync_percent_completesmallintno250
current_sync_tokennvarcharno256  
next_sync_tokennvarcharno256  
last_reference_fetch_success_time_utcdatetimeno8  
last_reference_fetch_attempt_time_utcdatetimeno8  
last_reference_fetch_errorintno4100
last_blob_fetch_success_time_utcdatetimeno8  
last_blob_fetch_attempt_time_utcdatetimeno8  
last_blob_fetch_errorintno4100
last_sync_success_time_utcdatetimeno8  
last_synchronizing_success_time_utcdatetimeno8  
last_synchronizing_attempt_time_utcdatetimeno8  
last_synchronizing_errorintno4100
  • Note to self: check Azure SQL Database integration with Purview.
  • My assumption: Synchronization status with Purview.

dm_database_hs_log_rate

  • The DMV contains the following columns:
dm_database_hs_log_rate
  • Does “hs” stand for Harmonious Services?
  • My assumption: It looks to me that it is related to the log synchronization between the HA/DR replicas of the database.

dm_database_managed_identities

  • The columns here:
dm_database_managed_identities

dm_db_data_pool_nodes

  • The columns:
dm_db_data_pool_nodes
  • Note to self: test with Elastic Pool.
  • My assumption: Has logical data related to Elastic Pool, maybe metadata on each logical node.

dm_db_workload_group_resource_stats

  • Columns:
dm_db_workload_group_resource_stats
  • My biggest question is – why is this DMV empty?
  • An Azure SQL Database resource group is ” a logical container into which Azure resources are deployed and managed.”
  • My assumption: It seems like it will contain the resource utilization statistics by the Azure SQL Database Resource Group (actual instance?).
  • It may assist in calculating the DTU Utilization for Azure SQL Database, where applicable.

dm_db_xtp_undeploy_status

  • XTP Storage Object: “The SQL Server XTP Storage performance object contains counters related to on-disk storage for In-Memory OLTP in SQL Server.”
  • The columns and example data:
dm_db_xtp_undeploy_status
  • According to Wikipedia, “undeploy” means to undo the deployment of; to revert to a state prior to deployment of.
  • My assumption: The rollback point in the T-log for on-disk storage for In-Memory data (?)

dm_dist_requests

  • The DMV contains the following columns:
dm_dist_requests
  • My assumption: This DMV is related to Distributed Transactions or Distributed Request management.

dm_db_storage_pool_nodes

  • Here are the columns:
dm_db_storage_pool_nodes
  • As opposed to dm_db_data_pool_nodes DMV:
dm_db_storage_pool_nodes
  • Note to self: test this with Elastic Pool.
  • My assumption: As far as I understand the technology behind the Azure SQL Database, I would assume that an Elastic Pool also has a set of Storage Pools. Hence, this DMV contains the physical storage metadata for the Elastic Pool.

dm_dw_quality_clustering

  • The columns:
dm_dw_quality_clustering
  • My assumption: This view seems to be compatible with the future Datawarehouse Partitioning and/or Columnstore usage statistics, potentially related to Partitioned Clustered indexes or otherwise related to a Data Quality feature.

dm_dw_quality_delta

  • Columns:
dm_dw_quality_delta
  • My assumption: Also compatible with future Datawarehouse, potentially related to Delta Files and data quality/statistics.

dm_dw_quality_index

  • Columns:
dm_dw_quality_index
  • My assumption: In the same family of all the dm_dw_quality DMVs, potentially for all indexes.

dm_dw_quality_row_group

  • Columns:
dm_dw_quality_row_group
  • My assumption: Same as above, potentially related to data quality related to data grouping.

dm_exec_distributed_tasks

  • Columns:
dm_exec_distributed_tasks
  • My assumption: It seems like a “child” view to dm_dist_requests, with more information about the management/metadata of the distributed transactions or requests.

dm_external_governance_sync_state

  • This DMV contains many columns. Some of them are:
dm_external_governance_sync_state
  • In relation to dm_database_external_governance_sync_state, this DMV contains exactly the same columns.
  • My assumption: I have no idea what the difference is between this DMV and the same database-specific one (dm_database_external_governance_sync_state), as they contain the exact same columns and are both empty. Maybe they will contain the same data but can be viewed by different users based on their security level (i.e., an admin vs. a database owner).

dm_external_governance_synchronizing_objects

  • Columns:
dm_external_governance_synchronizing_objects
  • My assumption: Synchronization with Purview per object. I do not see any potential reference (similar column name) to the dm_external_governance_sync_state DMV, as I would expect to see.

dm_external_policy_excluded_role_members

  • Columns:
dm_external_policy_excluded_role_members
  • My assumption: A future ability to exclude external role members from a policy via a function (condition based). This capability exists in Azure Entra.

dm_io_network_traffic_stats

  • Columns:
dm_io_network_traffic_stats
  • My assumption: Collects network traffic statistics per network protocol, per type (sent/received) – count, average, bytes, min, max, etc.

dm_os_memory_allocations_filtered

  • Columns:
dm_os_memory_allocations_filtered
  • My assumption: Shows memory allocation per file (Database file? Delta file?)

dm_os_memory_health_history

  • Columns and data:
dm_os_memory_health_history
  • The allocation_potential_memory_mb column is documented for the sys.dm_os_out_of_memory_events table: “Memory available to the database engine instance for new allocations, in megabytes.”
  • If we look at Severity Levels in SQL Server: “Informational messages that return status information or report errors that aren't severe. The Database Engine doesn’t raise system errors with severities of 0 through 9.”
  • My assumption: The DMV contains informational data about free memory for new allocations in MBs.

dm_os_parent_block_descriptors

  • Columns:
dm_os_parent_block_descriptors
  • My clue is the OOM (Out Of Memory?).
  • My assumption: Blocking information on the underlying operating system by another process or another process on the same instance. I put my bet on the first option.

dm_pal_ring_buffers

  • PAL – Performance Analysis of Logs. “PAL tool reads in a performance monitor counter log and analyzes it using complex, but known thresholds (provided).”
  • The table contains the same columns as sys.dm_os_ring_buffers but is empty:
dm_pal_ring_buffers
  • The ring buffers are described here: “The sys.dm_os_ring_buffers dynamic management view (DMV). The ring buffers are created during SQL Server startup, and record alerts within the SQL Server system for internal diagnostics.”
  • My assumption: The DMV provides ring buffer information used by or to be used by PAL.

dm_request_phases

  • Columns:
dm_request_phases
  • My assumption: Since I see “dist,” I assume this is related to Distributed Requests or Distributed Transactions and contains information about the different phases of those requests.

dm_server_managed_identities

  • This DMV has the same columns as the same DMV on the database level:
dm_server_managed_identities
  • My assumption: The DMV contains data about the server-level Managed Identities.

dm_tran_orphaned_distributed_transactions

  • Columns:
dm_tran_orphaned_distributed_transactions
  • My assumption: This DMV contains data about orphaned processes from distributed transactions or requests.

dm_tran_distributed_transaction_stats

  • Partially documented here.
  • My assumption: Returns information about Distributed Transactions statistics in SQL Server (does not apply to Azure SQL Database, but table exists there).

Summary

In this tip, I have provided a list of the Data Management Views that exist on Azure SQL Database, but not on a SQL Server instance. This is only part 1 of a series. Here are some of the next parts I intend to write about in this series:

  • Testing content of some of the undocumented DMVs by simulating respective scenarios with Azure SQL Databases:
    • Performance
    • Security
    • Distributed Transactions/Requests
    • Purview integration
    • Elastic Pool
  • The most important Azure SQL Database DMVs that do not exist in a SQL Server instance and what we can do with them.

Stay tuned!

Next Steps

Leave a Reply

Your email address will not be published. Required fields are marked *