Oracle

Oracle Database Connection Guide

Data Bridge Pro supports Oracle Database 12c and later, including Oracle Autonomous Database and Oracle Cloud Infrastructure.

Connection Settings

SettingDescriptionExample
HostHostname or IPoracle.company.com
PortDefault: 15211521
Service NameOracle serviceORCL

Connection Methods

Service Name (Recommended)

Host=oracle.company.com;Port=1521;Service Name=ORCL;User Id=app_user;Password=****;

Oracle Autonomous Database

  1. Download wallet from OCI Console
  2. Select "Wallet Authentication" in Data Bridge Pro
  3. Browse to wallet folder
  4. Select service level (HIGH, MEDIUM, LOW)

Required Permissions

GRANT CREATE SESSION TO app_user;
GRANT SELECT ANY TABLE TO app_user;
GRANT INSERT ANY TABLE TO app_user;
GRANT UPDATE ANY TABLE TO app_user;
GRANT DELETE ANY TABLE TO app_user;

Troubleshooting

  • ORA-12154: Check TNS configuration
  • ORA-12541: Verify listener is running
  • ORA-01017: Check credentials