Snowflake SQL runs in snowflake but not in the input tool
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I have an input tool with a rather large Snowflake SQL (wasn't my choice per se I'm rewriting someone else's MS-server SQL ), anyhow, the query runs without a problem 'in' snowflake itself, but when I run it from Alteryx it fails. Let me state up front within this same flow I have 14 other snowflake converted queries that all run fine. They all connect to same source etc so it's not an issue of connecting correctly. I'm thinking something more obscure?
Any suggestions where to look at welcome.
MT
- Labels:
- Database Connection
- Input
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Is a message given when it fails? Diagnosing problems with large SQL can be challenging.
It could be something as simple as a single quote being interpreted as a different character.
I usually try to start with part of the SQL, see if it works, then add more joins and where clauses.
Start with a SELECT, only the fields from the primary table, and only WHERE clauses from the primary table. Then add one or two more tables and joins.
Trial-and-error can be tedious, but is sometimes the only option.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Red flag - is there a SET, a variable (ie a $value) or some kid of CTAS (WITH X as ....) the WITH may work on canvas but will not work In-DB.
