Skip to main content
Version: 2.1

Oracle Database Nodes

MaestroHub delivers full support for Oracle Database with native SQL and PL/SQL syntax, parameter binding, and connection tuning so you can integrate enterprise workloads seamlessly.

Configuration Quick Reference

FieldWhat you chooseDetails
ParametersConnection, Function, Function Parameters, Timeout OverrideSelect the connection profile, function, configure function parameters with expression support, and optionally override timeout.
SettingsDescription, Timeout (seconds), Retry on Timeout, Retry on Fail, On ErrorNode description, maximum execution time, retry behavior on timeout or failure, and error handling strategy. All execution settings default to pipeline-level values.

Node Types

Oracle Database connector provides three specialized node types for different operation patterns:

NodePurposeCommon Use Cases
QueryExecute SELECT queries and return structured rowsReporting dashboards, data lookups, KPI calculations
ExecuteExecute DML/DDL statements, return rows affectedINSERT/UPDATE/DELETE statements, schema changes, stored procedures
WriteLoad pipeline data into a table with auto schema detectionBulk sensor ingestion, auto-create tables, data loading from upstream nodes

Oracle Database Query node configuration

Oracle Query Node

Oracle Query Node

Execute SQL SELECT queries and return rows as structured data. Supports parameterized queries with :1 style bind variables.

Supported Function Types:

Function NamePurposeCommon Use Cases
QueryRun parameterized SELECT queries against OracleReporting dashboards, data lookups, aggregated KPI calculations

Oracle Database Execute node configuration

Oracle Execute Node

Oracle Execute Node

Execute DML/DDL statements (INSERT, UPDATE, DELETE, CREATE, ALTER, DROP) and return rowsAffected. Use for data modifications, schema changes, and PL/SQL execution.

Supported Function Types:

Function NamePurposeCommon Use Cases
ExecuteRun any SQL/PL/SQL statement or stored procedure callData modifications, schema migrations, PL/SQL blocks

Oracle Database Write node configuration

Oracle Write Node

Oracle Write Node

Load pipeline data into an Oracle table with automatic schema detection. Auto mode detects the table schema and maps incoming data fields to columns; Manual mode lets you specify exact columns. Supports batching via INSERT ALL, auto table creation, and schema evolution.

Supported Function Types:

Function NamePurposeCommon Use Cases
WriteLoad structured data into an Oracle tableBulk sensor ingestion, auto-create tables from pipeline data, data loading