Skip to content

Commit 738fabc

Browse files
committed
Add convertDecimalToInteger property
1 parent b2510f5 commit 738fabc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

articles/data-factory/connector-oracle.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: data-factory
77
ms.subservice: data-movement
88
ms.custom: synapse
99
ms.topic: conceptual
10-
ms.date: 09/09/2021
10+
ms.date: 09/15/2022
1111
ms.author: jianleishen
1212
---
1313

@@ -248,6 +248,7 @@ To copy data from Oracle, set the source type in the copy activity to `OracleSou
248248
| partitionColumnName | Specify the name of the source column **in integer type** that will be used by range partitioning for parallel copy. If not specified, the primary key of the table is auto-detected and used as the partition column. <br>Apply when the partition option is `DynamicRange`. If you use a query to retrieve the source data, hook `?AdfRangePartitionColumnName` in the WHERE clause. For an example, see the [Parallel copy from Oracle](#parallel-copy-from-oracle) section. | No |
249249
| partitionUpperBound | The maximum value of the partition column to copy data out. <br>Apply when the partition option is `DynamicRange`. If you use a query to retrieve the source data, hook `?AdfRangePartitionUpbound` in the WHERE clause. For an example, see the [Parallel copy from Oracle](#parallel-copy-from-oracle) section. | No |
250250
| partitionLowerBound | The minimum value of the partition column to copy data out. <br>Apply when the partition option is `DynamicRange`. If you use a query to retrieve the source data, hook `?AdfRangePartitionLowbound` in the WHERE clause. For an example, see the [Parallel copy from Oracle](#parallel-copy-from-oracle) section. | No |
251+
| convertDecimalToInteger | | No |
251252

252253
**Example: copy data by using a basic query without partition**
253254

@@ -271,6 +272,7 @@ To copy data from Oracle, set the source type in the copy activity to `OracleSou
271272
"typeProperties": {
272273
"source": {
273274
"type": "OracleSource",
275+
"convertDecimalToInteger": false,
274276
"oracleReaderQuery": "SELECT * FROM MyTable"
275277
},
276278
"sink": {

0 commit comments

Comments
 (0)