Skip to main content

All Questions

Filter by
Sorted by
Tagged with
1 vote
0 answers
37 views

I am attempting to run a long running training job leveraging snowflakes distributed multi model training functionality. Using a sample of my training data (~100k rows) this process completes with no ...
jgonz1's user avatar
  • 167
0 votes
1 answer
28 views

Something odd is happening in dbt. I'm following along to this video https://youtu.be/OLXkGB7krGo?si=7NEL-hQaxslZQGd1 I'm sure I've configured the connection to snowflake correctly because the views ...
kickpuncher11's user avatar
1 vote
1 answer
57 views

I'm using the access_history view to find out what tables and views in snowflake where last touched. problem is that if there is a view calling a view calling a table the middle vies would not appear ...
Ezer K's user avatar
  • 3,761
1 vote
1 answer
54 views

Executing this code while developing using a remote tunnel (Azure VM), the URL (token) seems not to redirect the token back to the snowflake client Session.builder.configs( { "...
Raphael Roth's user avatar
  • 27.3k
1 vote
1 answer
153 views

The database I'm working in is Snowflake. I also have to work through an interface and can't edit the SQL query directly. I'm trying to add a JOIN to a FROM clause that is connecting two schemas with ...
Rachel Helm's user avatar
-1 votes
0 answers
93 views

I have a stored procedure in Snowflake that joins data from two different databases, in the following form: CREATE OR REPLACE PROCEDURE database_1.schema_1.sp_test() RETURNS varchar AS BEGIN ...
Hollywood's user avatar
  • 344
2 votes
4 answers
133 views

I have a table p that looks like this: ID Col1 AAA kddd AAA 13bd AAA 14cd AAA 15cd BBB 15cd BBB 23fd BBB 4rre BBB tr3e CCC kddd CCC 12ed DDD rrr4 DDD rtt4 DDD rrt4 I have three lists of patterns that ...
m13op22's user avatar
  • 2,379
0 votes
2 answers
89 views

I have a pipeline that drops and re-creates several Snowflake tables every day (effectively a full refresh using CREATE OR REPLACE TABLE). I want to capture daily deltas (inserts/updates/deletes) for ...
NickS's user avatar
  • 1
0 votes
1 answer
99 views

There appears to be a bug in Snowflakes implementation Iceberg Tables which is evident if you try to capture change data. This seems to be a result of a more fundamental problem where a single parquet ...
Sumeet Keswani's user avatar
0 votes
1 answer
122 views

I am trying to build a snowflake nativeapp, and this is my first time trying to build one and my main objective is to get Query ID's Profile and Query/SQL Text of a Query ID that my app will get as an ...
user avatar
1 vote
1 answer
88 views

If DDL stated directly in the post_hook it executes after the materialization as expected, but if it is moved to a macro it executes before the materialization. This can be illustrated by this example:...
whetstone's user avatar
  • 699
0 votes
1 answer
108 views

I am using node 18.11 and snowflake-sdk nodejs driver v 1.15.0. Getting the below error: Snowflake Error SF: Error [ClientError]: Unable to perform operation because a connection was never ...
Fabulous's user avatar
  • 726
0 votes
0 answers
75 views

I’m currently exploring Inference Services in Snowflake and wanted to check if there’s an equivalent to the Event History column in Databricks. So far, the closest I’ve found in Snowflake are service ...
Symantic's user avatar
0 votes
1 answer
139 views

I have a personal Snowflake account on my MacBook Air (Tahoe 26 M4). Snowflake is requiring MFA. I added a passkey with a "nickname", which I'm not entirely sure what that means. When I ...
juststackoverflow's user avatar
0 votes
0 answers
39 views

We are ingesting data from Salesforce into Snowflake using Informatica. One of the challenges we’re facing is handling schema drift when Salesforce objects add or remove fields. Our Requirements: Need ...
Arti Agarwal's user avatar
5 votes
2 answers
108 views

I have data that looks like this (in snowflake/SQL) (we will call the table RX): Person ID Rx Filled Date Days Supply 1 January 1, 2025 10 1 January 8, 2025 10 1 January 15, 2025 10 1 January 30, 2025 ...
Randy Robinson's user avatar
-1 votes
2 answers
248 views

Good day! I am trying to create a PowerApp-Snowflake connector. I followed the officials steps provided by Snowflake: https://docs.snowflake.com/en/connectors/microsoft/powerapps/configure-oauth ...
YAHO5's user avatar
  • 13
0 votes
0 answers
59 views

When I created the streamlit app in snowflake, the default file is named streamlit_app.py. I am unable to change it. Because of it, when I tried creating a navigation link, the name is defaulted to &...
Akhil chandran's user avatar
0 votes
0 answers
39 views

I am trying to setup a CI pipeline to push my java application docker image to Snowflake image registry. Since I have to use key-pair auth therefore I tried using Snowflake-cli. I tried creating an ...
RDK's user avatar
  • 153
0 votes
0 answers
48 views

My goal is to: Extract email attachments (for example: images, PDF, or CSV files). Store those attachments into a Snowflake internal stage so that they can be processed later. I was able to set up the ...
pradip patil's user avatar
0 votes
1 answer
62 views

Is it possible to load csv file from local windows machine into TABLE STAGE in Snowflake Snowsight ? As I have done for Internal Named Stage and Unable to do it for TABLE STAGE ( @%) in UI/Snowsight
Veera V's user avatar
  • 135
0 votes
1 answer
364 views

I tried to create snowpark program in snowsight. There's already some code example showing when I add a sheet as following: import snowflake.snowpark as snowpark from snowflake.snowpark.functions ...
user9191983's user avatar
3 votes
1 answer
173 views

While experimenting with window functions in Snowflake, I stumbled upon a rather puzzling behavior of FIRST_VALUE in combination with IGNORE NULLS when using different window frame definitions. ...
Arkadiusz's user avatar
  • 457
2 votes
1 answer
118 views

We can check parameters of SESSION/ACCOUNT/DATABASE level individually using SHOW command in Snowflake: SHOW PARAMETERS IN ACCOUNT; —- shows parameters defined at the user level SHOW PARAMETERS IN ...
Veera V's user avatar
  • 135
0 votes
1 answer
114 views

I wanted to try this SQL to use bind variables as input (not in a stored procedure or anonymous block), but it's throwing an error. LET VARIABLE VARCHAR := 'RPT'; SELECT * FROM TABLE_NAME WHERE TYPE= :...
Veera V's user avatar
  • 135

1
2 3 4 5
256