n8n
Workflow
Create A Table In Quest Db And Insert Data
This n8n workflow creates tasks and integrates with various services. Create A Table In Quest Db And Insert Data - ready to import and run in your n8n instance.
n8n
workflow.json
About This Script
This n8n workflow creates tasks and integrates with various services. Create A Table In Quest Db And Insert Data - ready to import and run in your n8n instance.
Features:
- Automates workflow tasks
- Ready to import into n8n
- Configurable parameters
Source Code
{
"nodes": [
{
"name": "On clicking 'execute'",
"type": "n8n-nodes-base.manualTrigger",
"position": [
440,
460
],
"parameters": [],
"typeVersion": 1,
"id": "8c077398-d1ce-4320-ac72-32cbb07cd0b5"
},
{
"name": "Set",
"type": "n8n-nodes-base.set",
"position": [
840,
460
],
"parameters": {
"values": {
"number": [
{
"name": "id"
}
],
"string": [
{
"name": "name",
"value": "Tanay"
}
]
},
"options": []
},
"typeVersion": 1,
"id": "d1b176c7-a7c9-4dc7-9a6d-6ae75954ff40"
},
{
"name": "QuestDB",
"type": "n8n-nodes-base.questDb",
"position": [
640,
460
],
"parameters": {
"query": "CREATE TABLE test (id INT, name STRING);",
"operation": "executeQuery"
},
"credentials": {
"questDb": "QuestDB"
},
"typeVersion": 1,
"alwaysOutputData": true,
"id": "8def51f9-7482-41d8-ba5c-0e1b727352de"
},
{
"name": "QuestDB1",
"type": "n8n-nodes-base.questDb",
"position": [
1040,
460
],
"parameters": {
"table": "test",
"columns": "id, name"
},
"credentials": {
"questDb": "QuestDB"
},
"typeVersion": 1,
"id": "ffab4d4f-6ae5-4bf0-bef5-ec4b46a7f8d4"
}
],
"connections": {
"Set": {
"main": [
[
{
"node": "QuestDB1",
"type": "main",
"index": 0
}
]
]
},
"QuestDB": {
"main": [
[
{
"node": "Set",
"type": "main",
"index": 0
}
]
]
},
"On clicking 'execute'": {
"main": [
[
{
"node": "QuestDB",
"type": "main",
"index": 0
}
]
]
}
},
"n8n_version": "1.5.0"
}
Requirements
n8n instance, API credentials for connected services
Tags
#n8n
#automation
#workflow