n8n - 💡(How to fix) Fix Snowflake insert node stopped working correctly [2 comments, 3 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
n8n-io/n8n#28937Fetched 2026-04-24 06:13:16
View on GitHub
Comments
2
Participants
3
Timeline
5
Reactions
0
Timeline (top)
commented ×2labeled ×1mentioned ×1subscribed ×1

Error Message

Describe the problem/error/question

What is the error message (if any)?

"errorMessage": "SQL compilation error:\nsyntax error line 1 at position 36 unexpected '('.\nsyntax error line 1 at position 37 unexpected '?'.\nsyntax error line 1 at position 39 unexpected ','.", "OperationFailedError: SQL compilation error:", "syntax error line 1 at position 36 unexpected '('.", "syntax error line 1 at position 37 unexpected '?'.", "syntax error line 1 at position 39 unexpected ','.",

  • error: all

Code Example

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
⚠️ WARNING ⚠️ If you have sensitive data in your workflow (like API keys), please remove it before sharing.
RAW_BUFFERClick to expand / collapse

Describe the problem/error/question

The "Snowflake Insert" node stopped working after the last version update. The node worked before. There were no changes to the underlying data or to the flow itself. Seems like the initial table name and columns are missing from the API call. The current log on Snowflake shows this statement that failed: INSERT INTO IDENTIFIER(?)(IDENTIFIER(?),IDENTIFIER(?),IDENTIFIER(?),IDENTIFIER(?),IDENTIFIER(?),IDENTIFIER(?),IDENTIFIER(?)) VALUES (?,?,?,?,?,?,?)

Whereas previous runs shows these statements: INSERT INTO zoom.production.changelog_facts_tracking(TABLE_NAME,COLUMN_NAME,JOIN_KEY,INCLUDE_IN_CHANGELOG,FILTER_CLAUSE,DATA_TYPE,UPDATE_TS_COLUMN) VALUES (?,?,?,?,?,?,?)

There is no issue of empty data or missing data. We've created similar test flows to check if this is a data issue, and didn't find any issue with the data itself.

What is the error message (if any)?

{ "errorMessage": "SQL compilation error:\nsyntax error line 1 at position 36 unexpected '('.\nsyntax error line 1 at position 37 unexpected '?'.\nsyntax error line 1 at position 39 unexpected ','.", "errorDetails": {}, "n8nDetails": { "n8nVersion": "2.17.5 (Cloud)", "binaryDataMode": "filesystem", "stackTrace": [ "OperationFailedError: SQL compilation error:", "syntax error line 1 at position 36 unexpected '('.", "syntax error line 1 at position 37 unexpected '?'.", "syntax error line 1 at position 39 unexpected ','.", " at createError (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/snowflake-[email protected]_asn1.js@[email protected]/node_modules/snowflake-sdk/lib/errors.js:557:17)", " at Object.exports.createOperationFailedError (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/snowflake-[email protected]_asn1.js@[email protected]/node_modules/snowflake-sdk/lib/errors.js:360:10)", " at Object.callback (/usr/local/lib/node_modules/n8n/node_modules/.pnpm/snowflake-[email protected]_asn1.js@[email protected]/node_modules/snowflake-sdk/lib/services/sf.js:673:28)", " at /usr/local/lib/node_modules/n8n/node_modules/.pnpm/snowflake-[email protected]_asn1.js@[email protected]/node_modules/snowflake-sdk/lib/http/base.js:48:24", " at processTicksAndRejections (node:internal/process/task_queues:104:5)" ] } }

Please share your workflow/screenshots/recording

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
⚠️ WARNING ⚠️ If you have sensitive data in your workflow (like API keys), please remove it before sharing.

{ "nodes": [ { "parameters": { "table": "ZOOM.PRODUCTION.CHANGELOG_FACTS_TRACKING", "columns": "=TABLE_NAME,COLUMN_NAME,JOIN_KEY,INCLUDE_IN_CHANGELOG,FILTER_CLAUSE,DATA_TYPE,UPDATE_TS_COLUMN" }, "type": "n8n-nodes-base.snowflake", "typeVersion": 1, "position": [ 752, 0 ], "id": "845e4d18-0719-4db9-9602-aa0ad128fe7a", "name": "Snowflake", "credentials": { "snowflake": { "id": "gxT9Tw3Ec16eF9AL", "name": "n8n user" } } } ], "connections": { "Snowflake": { "main": [ [] ] } }, "pinData": {}, "meta": { "templateCredsSetupCompleted": true, "instanceId": "74098f9290bae6008e5b4c14e779486237d1132a3ed8565e8ee5dcde6c64b2ba" } }

Share the output returned by the last node

<!-- If you need help with data transformations, please also share your expected output. -->

Debug info

core

  • n8nVersion: 2.17.5
  • platform: docker (cloud)
  • nodeJsVersion: 24.14.1
  • nodeEnv: production
  • database: sqlite
  • executionMode: regular
  • concurrency: 50
  • license: enterprise (sandbox)

storage

  • success: all
  • error: all
  • progress: false
  • manual: true
  • binaryMode: filesystem

pruning

  • enabled: true
  • maxAge: 720 hours
  • maxCount: 25000 executions

client

  • userAgent: mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/147.0.0.0 safari/537.36
  • isTouchDevice: false

Generated at: 2026-04-23T06:30:02.421Z

extent analysis

TL;DR

The "Snowflake Insert" node is failing due to a syntax error in the SQL query, likely caused by missing table and column names in the API call.

Guidance

  • Verify that the table and columns parameters in the Snowflake node are correctly set to "ZOOM.PRODUCTION.CHANGELOG_FACTS_TRACKING" and "=TABLE_NAME,COLUMN_NAME,JOIN_KEY,INCLUDE_IN_CHANGELOG,FILTER_CLAUSE,DATA_TYPE,UPDATE_TS_COLUMN", respectively.
  • Check the Snowflake node's configuration to ensure that it is properly handling the table and column names.
  • Review the n8n version update notes to see if there were any changes to the Snowflake node's behavior or configuration.
  • Test the Snowflake node with a simple query to see if the issue is specific to the "Insert" operation.

Example

No code snippet is provided as the issue seems to be related to the node's configuration rather than a code error.

Notes

The issue may be related to a change in the Snowflake node's behavior or configuration in the latest n8n version update. Further investigation is needed to determine the root cause.

Recommendation

Apply a workaround by re-configuring the Snowflake node to properly handle the table and column names, or wait for a potential fix in a future n8n version update.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

n8n - 💡(How to fix) Fix Snowflake insert node stopped working correctly [2 comments, 3 participants]