An Azure service for ingesting, preparing, and transforming data at scale.
Hello @Natheem Yousuf ,
I am using ADF + SHIR (5.60.9438.1 - latest IR)+ Oracle DB version 19.0.0.0.0 + EBS connector 2.0.
I also increase the connectiontimeout property to 180, however it didn't work.
The Oracle Linked Service in ADF always relies on Microsoft’s Oracle ODBC/ADO.NET provider and does not use the Oracle ODP.NET driver. Therefore, ODP.NET-specific capabilities are not supported in ADF. ODP.NET is typically configured through app.config or web.config files in .NET applications.
We observe if we switch back to EBS 1.0 Connector, then connection work fine. really strange.
Linked service-
{
"name": "LinkSvc",
"type": "Microsoft.DataFactory/factories/linkedservices",
"properties": {
"annotations": [],
"type": "Oracle",
"version": "2.0",
"typeProperties": {
"server": "ServerName:Port/ServiceId",
"connectionTimeout": 180,
"authenticationType": "Basic",
"username": "<UserName>",
"password": {
"type": "AzureKeyVaultSecret",
"store": {
"referenceName": "LinkSvcKeyv",
"type": "LinkedServiceReference"
},
"secretName": "oracleEBSConnStringPass",
"secretVersion": ""
},
},
"connectVia": {
"referenceName": "Password",
"type": "IntegrationRuntimeReference"
}
}
}