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
|[Oracle Net Services Name (TNS Alias)](https://docs.oracle.com/en/database/oracle/oracle-database/23/netrf/local-naming-parameters-in-tns-ora-file.html#GUID-12C94B15-2CE1-4B98-9D0C-8226A9DDF4CB) (only for the self-hosted integration runtime)|sales|
184
184
185
-
For the parameters used in `server`, we provide an allowlist to avoid security risks, as shown below. You can refer to it to determine which parameters to be set. If you use parameters that are not in the allowlist, your connection fails.
185
+
The following list shows the supported parameters used in `server`. If you use parameters that are not in the following list, your connection fails.
186
186
187
-
-The allowlist for using the Azure integration runtime:
@@ -527,7 +527,7 @@ Here are steps that help you upgrade the Oracle connector:
527
527
528
528
1. In **Edit linked service** page, select **2.0 (Preview)** under **Version** and configure the linked service by referring to [Linked service properties version 2.0](#version-20).
529
529
530
-
For the authentication related properties including username and password, specify the original values in the corresponding fields in version 2.0. For other connection properties in version 1.0 including host, port and Oracle Service Name/Oracle SID, they all become parts of the [server property in version 2.0](#server-property-configuration).
530
+
For the authentication related properties including username and password, specify the original values in the corresponding fields in version 2.0. Other connection properties such as host, port, and Oracle Service Name/Oracle SID in version 1.0 are now parameters of the [`server` property in version 2.0](#server-property-configuration).
531
531
532
532
For example, if you configure the version 1.0 linked service as shown below:
533
533
@@ -611,19 +611,19 @@ Here are steps that help you upgrade the Oracle connector:
611
611
612
612
| Version 1.0 | Version 2.0 |
613
613
|:--- |:--- |
614
-
| encryptionmethod| PROTOCOL (server parameter) |
614
+
| encryptionmethod| PROTOCOL (parameter in `server`) |
615
615
| tnsnamesfile | TNS_ADMIN (environment variable supported on the self-hosted integration runtime) |
| alternateservers | DESCRIPTION_LIST (parameter in `server`) |
620
+
| arraysize | fetchSize |
621
+
| cachedcursorlimit | statementCacheSize |
622
+
| connectionretrycount | RETRY_COUNT (parameter in `server`) |
623
+
| initializationstring | initializationString |
624
+
| logintimeout | CONNECT_TIMEOUT (parameter in `server`) |
625
+
| cryptoprotocolversion | SSL_VERSION (parameter in `server`) |
626
+
| truststore | WALLET_LOCATION (parameter in `server`) |
627
627
628
628
For example, if you use `alternateservers` in version 1.0, you can set the `DESCRIPTION_LIST` parameter in the server property in version 2.0:
629
629
@@ -669,6 +669,6 @@ The Oracle connector version 2.0 offers new functionalities and is compatible wi
669
669
670
670
| Version 2.0 | Version 1.0 |
671
671
|:--- |:--- |
672
-
|The following mappings are used from Oracle data types to interim data types used by the service internally. <br><br>NUMBER(p,s) -> Int16, Int32, Int64, Double, Single, Decimal <br>FLOAT(p)-> Double or Decimal based on its precision <br>NUMBER -> Decimal <br>TIMESTAMP WITH TIME ZONE -> DateTimeOffset <br>INTERVAL YEAR TO MONTH -> Int64 <br>INTERVAL DAY TO SECOND -> TimeSpan |The following mappings are used from Oracle data types to interim data types used by the service internally. <br><br>NUMBER(p,s) -> Decimal or String based on its precision <br>FLOAT(p)-> Double <br>NUMBER -> Double <br>TIMESTAMP WITH TIME ZONE -> DateTime <br>INTERVAL YEAR TO MONTH -> String <br>INTERVAL DAY TO SECOND -> String |
673
-
| convertDecimalToIntegerin copy source is not supported. | Support convertDecimalToInteger in copy source. |
672
+
|The following mappings are used from Oracle data types to interim service data types used by the service internally. <br><br>NUMBER(p,s) -> Int16, Int32, Int64, Double, Single, Decimal <br>FLOAT(p)-> Double or Decimal based on its precision <br>NUMBER -> Decimal <br>TIMESTAMP WITH TIME ZONE -> DateTimeOffset <br>INTERVAL YEAR TO MONTH -> Int64 <br>INTERVAL DAY TO SECOND -> TimeSpan |The following mappings are used from Oracle data types to interim service data types used by the service internally. <br><br>NUMBER(p,s) -> Decimal or String based on its precision <br>FLOAT(p)-> Double <br>NUMBER -> Double <br>TIMESTAMP WITH TIME ZONE -> DateTime <br>INTERVAL YEAR TO MONTH -> String <br>INTERVAL DAY TO SECOND -> String |
673
+
| Support convertDecimalToIntegerin copy source when `supportV1DataTypes` is set to `true`. | Support convertDecimalToInteger in copy source. |
674
674
| Using `?` as a placeholder for script activity query parameters is not support. You can use the named parameter (such as `:paramA`) or the positional parameter (such as `:1`) as a replacement. | Support using `?` as a placeholder for script activity query parameters. |
0 commit comments