Skip to content

Commit bacf770

Browse files
Clare Zheng (Shanghai Wicresoft Co Ltd)Clare Zheng (Shanghai Wicresoft Co Ltd)
authored andcommitted
Update screenshot and update mapping note
1 parent f0a7ce3 commit bacf770

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

articles/data-factory/connector-oracle.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,16 @@ When you copy data from and to Oracle, the following interim data type mappings
515515
| XMLTYPE |String |String |
516516

517517
> [!NOTE]
518-
> NUMBER(p,s) is mapped to the appropriate interim service data type depending on the precision (p) and scale (s).
518+
> NUMBER(p,s) is mapped to the appropriate version 2.0 interim service data type depending on the precision (p) and scale (s):
519+
>
520+
> | Interim service data type | Condition |
521+
> |--------------------------|----------------------------------------------------------------------------------------------------------------|
522+
> | Int16 | scale <= 0 AND (precision - scale) < 5 |
523+
> | Int32 | scale <= 0 AND 5 <= (precision - scale) < 10 |
524+
> | Int64 | scale <= 0 AND 10 <= (precision - scale) < 19 |
525+
> | Single | precision < 8 AND ((scale <= 0 AND (precision - scale) <= 38) OR (scale > 0 AND scale <= 44)) |
526+
> | Decimal | precision &gt;= 16 |
527+
> | Double | If none of the above conditions are met. | |
519528
520529
## Lookup activity properties
521530

3.04 KB
Loading

0 commit comments

Comments
 (0)