Skip to content

Commit 08f6acf

Browse files
Merge pull request #211340 from Clare-Zheng82/0915-Add_convertDecimalToInteger_property_to_Oracle_doc
[New feature] - Add convertDecimalToInteger property to Oracle connector doc
2 parents ee4d924 + 6d268f3 commit 08f6acf

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

@@ -242,6 +242,7 @@ To copy data from Oracle, set the source type in the copy activity to `OracleSou
242242
|:--- |:--- |:--- |
243243
| type | The type property of the copy activity source must be set to `OracleSource`. | Yes |
244244
| oracleReaderQuery | Use the custom SQL query to read data. An example is `"SELECT * FROM MyTable"`.<br>When you enable partitioned load, you need to hook any corresponding built-in partition parameters in your query. For examples, see the [Parallel copy from Oracle](#parallel-copy-from-oracle) section. | No |
245+
| convertDecimalToInteger | Oracle NUMBER type with zero or unspecified scale will be converted to corresponding integer. Allowed values are **true** and **false** (default).| No |
245246
| partitionOptions | Specifies the data partitioning options used to load data from Oracle. <br>Allowed values are: **None** (default), **PhysicalPartitionsOfTable**, and **DynamicRange**.<br>When a partition option is enabled (that is, not `None`), the degree of parallelism to concurrently load data from an Oracle database is controlled by the [`parallelCopies`](copy-activity-performance-features.md#parallel-copy) setting on the copy activity. | No |
246247
| partitionSettings | Specify the group of the settings for data partitioning. <br>Apply when the partition option isn't `None`. | No |
247248
| partitionNames | The list of physical partitions that needs to be copied. <br>Apply when the partition option is `PhysicalPartitionsOfTable`. If you use a query to retrieve the source data, hook `?AdfTabularPartitionName` in the WHERE clause. For an example, see the [Parallel copy from Oracle](#parallel-copy-from-oracle) section. | No |
@@ -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)