Saswati
Saswati

Reputation: 21

How can I run queries concurrently in Snowflake

How can i run some set a select queries in snowflake concurrently. When i write query and running it it runs one by one, but i want all the query to start at same time..

Can anybody help me on this. Thanks in advance Regards Saswati.

Upvotes: 1

Views: 4069

Answers (1)

Hans Henrik Eriksen
Hans Henrik Eriksen

Reputation: 2850

There are multiple ways to do this, some of them are:

  • Create a TASK for each query and schedule for the same time
  • Use an external tool (eg ETL tool) capable of running multiple queries in parallel
  • Write a script (eg Python) using eg threading

Upvotes: 2

Related Questions