npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-oracle11g

v1.0.8

Published

Oracle 11g database node for n8n workflow automation platform

Readme

n8n-nodes-oracle11g

Oracle 11g database node for n8n workflow automation platform.

Features

  • Execute SQL queries on Oracle 11g databases
  • Support for both Service Name and SID connection types
  • Built with Oracle Instant Client for compatibility
  • Secure credential management

Prerequisites

IMPORTANT: This package requires Oracle Instant Client to be installed on your n8n server for Oracle 11g compatibility.

Docker Installation (Recommended)

Add Oracle Instant Client to your n8n Dockerfile:

FROM n8nio/n8n:latest

# Switch to root to install Oracle Client
USER root

# Install dependencies
RUN apk add --no-cache wget unzip libaio libc6-compat gcompat libnsl

# Download and install Oracle Instant Client 21.9
RUN wget https://download.oracle.com/otn_software/linux/instantclient/219000/instantclient-basic-linux.x64-21.9.0.0.0dbru.zip -O /tmp/instantclient.zip && \
    mkdir -p /oracle && \
    unzip /tmp/instantclient.zip -d /oracle && \
    rm /tmp/instantclient.zip

# Set Oracle environment variables
ENV ORACLE_HOME=/oracle/instantclient_21_9
ENV LD_LIBRARY_PATH=$ORACLE_HOME:$LD_LIBRARY_PATH
ENV PATH=$ORACLE_HOME:$PATH

# Switch back to node user
USER node

Docker Compose Example

version: '3.8'
services:
  n8n:
    build: .
    ports:
      - "5678:5678"
    environment:
      - N8N_COMMUNITY_PACKAGES_ENABLED=true
      - ORACLE_HOME=/oracle/instantclient_21_9
      - LD_LIBRARY_PATH=/oracle/instantclient_21_9
    volumes:
      - n8n_data:/home/node/.n8n

volumes:
  n8n_data:

Manual Installation

If not using Docker, install Oracle Instant Client on your system:

  1. Download Oracle Instant Client from Oracle website
  2. Extract to /oracle/instantclient_21_9 (or your preferred location)
  3. Set environment variables:
    export ORACLE_HOME=/oracle/instantclient_21_9
    export LD_LIBRARY_PATH=$ORACLE_HOME:$LD_LIBRARY_PATH
    export PATH=$ORACLE_HOME:$PATH

Installation

Via n8n Community Packages

  1. Go to SettingsCommunity Packages in your n8n instance
  2. Install: n8n-nodes-oracle11g

Via npm

npm install n8n-nodes-oracle11g

Configuration

Credentials

Create a new Oracle 11g API credential with:

  • Host: Your Oracle server hostname/IP
  • Port: Oracle port (default: 1521)
  • Database: Service name or SID
  • Username: Database username
  • Password: Database password
  • Connection Type: Choose "Service Name" or "SID"

Node Usage

  1. Add the Oracle 11g node to your workflow
  2. Select your Oracle 11g API credential
  3. Enter your SQL query
  4. Execute the workflow

Example

SELECT SYSDATE FROM dual

Troubleshooting

Error: "connections to this database server version are not supported by node-oracledb in Thin mode"

This error occurs when Oracle Instant Client is not properly installed. Ensure:

  1. Oracle Instant Client is installed in your n8n environment
  2. Environment variables are set correctly
  3. n8n container/process has access to the Oracle libraries

Error: "DPI-1047: Cannot locate a 64-bit Oracle Client library"

This indicates Oracle Instant Client is not found. Check:

  1. Installation path is correct
  2. LD_LIBRARY_PATH includes Oracle client directory
  3. Oracle client architecture matches your system (x64)

Requirements

  • n8n version 0.126.0 or higher
  • Oracle Instant Client 21.9 or compatible version
  • Oracle 11g database server
  • Network connectivity to Oracle server

License

MIT

Support

For issues and feature requests, please visit the GitHub repository.