Oracle Database

Category: SQL Status: base

Connects to Oracle Database. Supports SQL querying, schema browsing, migrations, ORM code generation, and data transfer.

Connection Settings

Field Default Description
host localhost Server hostname or IP
port 1521 Oracle listener port
user (empty) Database username (default: SYS)
password (empty) Password (8–30 chars, mixed case + digits + symbols)
service (empty) Oracle service name (e.g. XE, freepdb1)
url (empty) Full connection URL (overrides above fields)

Authentication

Oracle database credentials. Use SYS with AS SYSDBA for admin access. The service field replaces the SID in modern Oracle setups.

Supported Actions

Required Setup

Requires the oracledb Python package:

pip install oracledb

External Links