You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/data-factory/connector-microsoft-fabric-warehouse.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,6 +98,7 @@ These properties are supported for the linked service:
98
98
| Property | Description | Required |
99
99
|:--- |:--- |:--- |
100
100
| type | The type property must be set to **Warehouse**. |Yes |
101
+
| endpoint | The endpoint of Microsoft Fabric Warehouse server. | Yes |
101
102
| workspaceId | The Microsoft Fabric workspace ID. | Yes |
102
103
| artifactId | The Microsoft Fabric Warehouse object ID. | Yes |
103
104
| tenant | Specify the tenant information (domain name or tenant ID) under which your application resides. Retrieve it by hovering the mouse in the upper-right corner of the Azure portal. | Yes |
@@ -116,6 +117,7 @@ You can also store service principal key in Azure Key Vault.
116
117
"properties": {
117
118
"type": "Warehouse",
118
119
"typeProperties": {
120
+
"endpoint": "<Microsoft Fabric Warehouse server endpoint>",
"tenant": "<tenant info, e.g. microsoft.onmicrosoft.com>",
@@ -184,6 +186,7 @@ To copy data from Microsoft Fabric Warehouse, set the **type** property in the C
184
186
| sqlReaderQuery | Use the custom SQL query to read data. Example: `select * from MyTable`. | No |
185
187
| sqlReaderStoredProcedureName | The name of the stored procedure that reads data from the source table. The last SQL statement must be a SELECT statement in the stored procedure. | No |
186
188
| storedProcedureParameters | Parameters for the stored procedure.<br/>Allowed values are name or value pairs. Names and casing of parameters must match the names and casing of the stored procedure parameters. | No |
189
+
| queryTimeout | Specifies the timeout for query command execution. Default is 120 minutes. | No |
187
190
| isolationLevel | Specifies the transaction locking behavior for the SQL source. The allowed value is **Snapshot**. If not specified, the database's default isolation level is used. For more information, see [system.data.isolationlevel](/dotnet/api/system.data.isolationlevel). | No |
188
191
| partitionOptions | Specifies the data partitioning options used to load data from Microsoft Fabric Warehouse. <br>Allowed values are: **None** (default), and **DynamicRange**.<br>When a partition option is enabled (that is, not `None`), the degree of parallelism to concurrently load data from a Microsoft Fabric Warehouse is controlled by the [`parallelCopies`](copy-activity-performance-features.md#parallel-copy) setting on the copy activity. | No |
189
192
| partitionSettings | Specify the group of the settings for data partitioning. <br>Apply when the partition option isn't `None`. | No |
@@ -380,7 +383,7 @@ Using [COPY statement](/sql/t-sql/statements/copy-into-transact-sql?source=recom
380
383
- If your source data store and format isn't originally supported by COPY statement, use the **[Staged copy by using COPY statement](#staged-copy-by-using-copy-statement)** feature instead. The staged copy feature also provides you better throughput. It automatically converts the data into COPY statement compatible format, stores the data in Azure Blob storage, then calls COPY statement to load data into Microsoft Fabric Warehouse.
381
384
382
385
>[!TIP]
383
-
>When using COPY statement with Azure Integration Runtime, effective [Data Integration Units (DIU)](copy-activity-performance-features.md#data-integration-units) is always 2. Tuning the DIU doesn't impact the performance, as loading data from storage is powered by the Azure Synapse engine.
386
+
>When using COPY statement with Azure Integration Runtime, effective [Data Integration Units (DIU)](copy-activity-performance-features.md#data-integration-units) is always 2. Tuning the DIU doesn't impact the performance.
384
387
385
388
### Direct copy by using COPY statement
386
389
@@ -414,7 +417,7 @@ The following COPY statement settings are supported under `allowCopyCommand` in
| defaultValues | Specifies the default values for each target column in Microsoft Fabric Warehouse. The default values in the property overwrite the DEFAULT constraint set in the data warehouse, and identity column cannot have a default value. | No |
417
-
| additionalOptions | Additional options that will be passed to a Microsoft Fabric Warehouse COPY statement directly in "With" clause in [COPY statement](/sql/t-sql/statements/copy-into-transact-sql). Quote the value as needed to align with the COPY statement requirements. | No |
420
+
| additionalOptions | Additional options that will be passed to a Microsoft Fabric Warehouse COPY statement directly in "With" clause in [COPY statement](/sql/t-sql/statements/copy-into-transact-sql?source=recommendations&view=fabric&preserve-view=true). Quote the value as needed to align with the COPY statement requirements. | No |
418
421
419
422
```json
420
423
"activities":[
@@ -479,7 +482,7 @@ To use this feature, create an [Azure Blob Storage linked service](connector-azu
0 commit comments