General FAQs
WebsiteAll Products
  • General FAQs
    • Tableau Server Safe List / Whitelisting
    • How do I replace a license in an existing Tableau workbook?
    • Common Error Messages
      • Error 401
      • Extension not loading in Tableau Server or Tableau Online
      • Unable to access WriteBackExtreme Management Console.
      • Snowflake schema creation fails with "undefined" error.
    • Known Limitations & Workarounds
      • Dropdown menus not working on Mac?
      • Can I print or export extension content from my Tableau dashboard?
      • Extension is not resizing correctly in fixed dashboards, is there a workaround?
      • Why do Viz Extensions work in Tableau Desktop but not on Tableau Server?
      • Why can’t I print or export extension content?
      • SuperTables keeps reloading in Tableau Desktop
    • Security & Data Privacy
      • How is my personal data handled?
      • Can I review the extension source?
      • Are Apps for Tableau extensions secure?
      • How do Tableau extensions process data?
      • Do your extensions support on-premises deployment?
      • What security practices apply to the SaaS (Share Cloud) version?
      • Can I inspect or verify the extension before using it?
      • Do extensions require internet access?
    • Licensing & Activation
      • Do I need licenses in development environments?
      • Can I switch or upgrade my subscription plan?
      • Is payment secure?
      • How Can I Get a Refund?
    • Support & Contact
Powered by GitBook
On this page
  1. General FAQs
  2. Common Error Messages

Snowflake schema creation fails with "undefined" error.

Cause: The error occurs due to a behavior in Snowflake's default PDO/ODBC driver. Unlike other databases, the Snowflake ODBC driver executes SQL statements immediately — even during the prepare phase — instead of using the standard flow:

Expected: Prepare (sanitize input) → Execute Actual (Snowflake): Prepare → Immediately executes DDL

This behavior conflicts with how WriteBackExtreme safely prepares queries for execution, resulting in schema creation failure.


Symptoms:

  • Creating a new schema in Snowflake fails

  • Error message shown: “undefined”

  • WriteBackExtreme cannot proceed with schema operations


Resolution: To resolve this, you must configure the ODBC driver to restore the correct SQL prepare behavior.

✅ Steps:

  1. Open your ODBC configuration file

  2. Set the following parameter:

    iniCopyEditNoExecuteInSQLPrepare=true
  3. Save and restart your connection/service

This forces the driver to prepare statements properly before execution, as expected by WriteBackExtreme.


🔗 References:

PreviousUnable to access WriteBackExtreme Management Console.NextKnown Limitations & Workarounds

Last updated 12 days ago

Snowflake ODBC Driver – SQLPrepare/Execute Behavior
WriteBackExtreme Installation Guide – Linux