Skip to main content

share_subscriptions_synchronization_details

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

Overview

Nameshare_subscriptions_synchronization_details
TypeResource
Idazure.data_share.share_subscriptions_synchronization_details

Fields

NameDatatypeDescription
namestringName of the data set
dataSetIdstringId of data set
dataSetTypestringType of the data set
durationMsintegerDuration of data set level copy
endTimestringEnd time of data set level copy
filesReadintegerThe number of files read from the source data set
filesWrittenintegerThe number of files written into the sink data set
messagestringError message if any
rowsCopiedintegerThe number of files copied into the sink data set
rowsReadintegerThe number of rows read from the source data set.
sizeReadintegerThe size of the data read from the source data set in bytes
sizeWrittenintegerThe size of the data written into the sink data set in bytes
startTimestringStart time of data set level copy
statusstringRaw Status
vCoreintegerThe vCore units consumed for the data set synchronization

Methods

NameAccessible byRequired ParamsDescription
listSELECTaccountName, resourceGroupName, shareSubscriptionName, subscriptionId, data__synchronizationIdList synchronization details

SELECT examples

List synchronization details

SELECT
name,
dataSetId,
dataSetType,
durationMs,
endTime,
filesRead,
filesWritten,
message,
rowsCopied,
rowsRead,
sizeRead,
sizeWritten,
startTime,
status,
vCore
FROM azure.data_share.share_subscriptions_synchronization_details
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND shareSubscriptionName = '{{ shareSubscriptionName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND data__synchronizationId = '{{ data__synchronizationId }}';