Block 1 - When clicking ‘Execute workflow’
- Type / Role
- n8n-nodes-base.manualTrigger - manualTrigger
- Config choices
- Version 1
This workflow is provided as-is. Please review and test before using in production.
How it works 1. Create a user for doing Hybrid Search. 2. Clear Existing Data, if present. 3. Add Documents into the table. 4. Create a hybrid index. 5. Run Semantic search on Documents table for "...
n8n-nodes-base.manualtrigger, n8n-nodes-base.stickynote, @n8n/n8n-nodes-langchain.chattrigger, n8n-nodes-base.oracledatabase, n8n-nodes-base.code
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by sudarshan.
Original n8n.io sourceDownload the ONNX model
all_MiniLM_L12_v2_augmented.zip
Extract the ZIP file on the database server into a directory, for example /opt/oracle/onnx.
After extraction, the folder contents should look like:
bash-4.4$ pwd
/opt/oracle/onnx
bash-4.4$ ls
all_MiniLM_L12_v2.onnx
Connect as SYSDBA and create the DBA user
-- Create DBA user
CREATE USER app_admin IDENTIFIED BY "StrongPassword123"
DEFAULT TABLESPACE users
TEMPORARY TABLESPACE temp
QUOTA UNLIMITED ON users;
-- Grant privileges
GRANT DBA TO app_admin;
GRANT CREATE TABLESPACE, ALTER TABLESPACE, DROP TABLESPACE TO app_admin;
Create n8n Oracle DB credentials
Click the manual Trigger
Enter search text in Chat interface
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | AI-powered document search with Oracle and ONNX embeddings for recruiting |
|---|---|
| Complexity | advanced |
| Nodes | 22 |
| Categories | Engineering, AI RAG |
| Author | sudarshan |
| Published | 29 Oct 2025 |
Use the JSON export at /data/workflows/10273/10273.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
How it works 1. Create a user for doing Hybrid Search. 2. Clear Existing Data, if present. 3. Add Documents into the table. 4. Create a hybrid index. 5. Run Semantic search on Documents table for "...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Engineering, AI RAG use case.