Skip to content

Oracle List Schemas

Lists all available schemas in the connected Oracle database. It uses provided Oracle credentials to connect and returns a human-readable summary along with structured JSON data.
Preview

Usage

Use this node early in a database exploration workflow to discover which schemas exist before listing tables or querying specific objects. Provide a valid Oracle credential set and an appropriate timeout. The output includes both text and JSON so you can branch it to visualization or downstream logic.

Inputs

FieldRequiredTypeDescriptionExample
credentials_pathTrueSTRINGPath or reference to the saved Oracle credentials to use for the connection.
timeoutTrueINTMaximum time in seconds to wait for the operation before timing out.30

Outputs

FieldTypeDescriptionExample
textSTRINGA formatted, human-readable summary of the Oracle schemas.Oracle Schemas: HR, SYSTEM, SYS, APP_DATA
jsonJSONStructured data containing the list of schemas and any additional metadata.{"schemas": ["HR", "SYSTEM", "SYS", "APP_DATA"]}
htmlHTMLHTML representation (empty for default output of this node).
xlsxXLSXExcel file content (empty for default output of this node).
pdfPDFPDF content (empty for default output of this node).

Important Notes

  • Credentials: Requires a valid Oracle credential configuration. Ensure the credential template matches the Oracle service.
  • Permissions: The connected user must have privileges to view schemas; results may be limited by database permissions.
  • Timeouts: Large environments or slow connections may require increasing the timeout value.
  • Outputs: By default, this node returns text and JSON. HTML/XLSX/PDF outputs are not populated for this operation.

Troubleshooting

  • Authentication failed: Verify the credentials file path and contents, and ensure host/port/service name are correct.
  • Timeout or network errors: Increase the timeout value and confirm network access to the Oracle server.
  • Empty or partial schema list: Check user permissions in Oracle; lack of privileges can hide schemas.
  • Unexpected output format: Ensure downstream nodes handle text/JSON; this node does not generate HTML/XLSX/PDF by default.