Skip to main content

shares_synchronization_details

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

Overview

Nameshares_synchronization_details
TypeResource
Idazure.data_share.shares_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, shareName, subscriptionIdList 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.shares_synchronization_details
WHERE accountName = '{{ accountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND shareName = '{{ shareName }}'
AND subscriptionId = '{{ subscriptionId }}';