Questions tagged [sql]
Structured Query Language (SQL) is a language for querying databases. Questions should include code examples, table structure, sample data, and a tag for the DBMS implementation (e.g. MySQL, PostgreSQL, Oracle, MS SQL Server, IBM DB2, etc.) being used. If your question relates solely to a specific DBMS (uses specific extensions/features), use that DBMS's tag instead. Answers to questions tagged with SQL should use ISO/IEC standard SQL.
2
questions with bounties
0
votes
1
answer
33
views
+50
How to check files in Snowflake stage using Airflow
I'm trying to implement an Airflow sensor that checks if a file is present in Snowflake stage, and trigger a task. The files are in S3. I understand that there's S3KeySensor, however I don't have ...
0
votes
0
answers
31
views
+50
Load data from S3 to Snowflake, overwrite vs using stream
I'm trying to load files from S3 to Snowflake using copy into commands. The pipeline is scheduled using Airflow. Each day there would be new files (e.g. source_20240501.csv). In order to rerun a ...