Skip to main content

vw_sql_pool_replication_links

Creates, updates, deletes, gets or lists a vw_sql_pool_replication_links resource.

Overview

Namevw_sql_pool_replication_links
TypeView
Idazure.synapse.vw_sql_pool_replication_links

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
location as location,
type as type,
JSON_EXTRACT(properties, '$.isTerminationAllowed') as "is_termination_allowed",
JSON_EXTRACT(properties, '$.replicationMode') as "replication_mode",
JSON_EXTRACT(properties, '$.partnerServer') as "partner_server",
JSON_EXTRACT(properties, '$.partnerDatabase') as "partner_database",
JSON_EXTRACT(properties, '$.partnerLocation') as "partner_location",
JSON_EXTRACT(properties, '$.role') as "role",
JSON_EXTRACT(properties, '$.partnerRole') as "partner_role",
JSON_EXTRACT(properties, '$.startTime') as "start_time",
JSON_EXTRACT(properties, '$.percentComplete') as "percent_complete",
JSON_EXTRACT(properties, '$.replicationState') as "replication_state",
subscriptionId,
resourceGroupName,
workspaceName,
sqlPoolName,
linkId
FROM azure.synapse.sql_pool_replication_links
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND workspaceName = 'replace-me' AND sqlPoolName = 'replace-me';