A Data Analyst has a Parquet file stored in an Amazon S3 staging area. Which query will copy the data from the staged Parquet file into separate columns in the target table?

A Data Analyst is working with three tables:

Which query would return a list of all brokers, a count of the customers each broker has. and the total order amount of their customers (as shown below)?

A)

B)

C)

D)

What are the PRIMARY reasons for using integrity constraints on Snowflake tables? (Select TWO).
A Data Analyst created a SQL statement that updates a table used for reporting. The Analyst now wants to automate the execution of that SQL.
The Analyst decides to use a task for this along with a stream called MYSTREAM on the source table so only they can update the table if there is new data.
Which statement will create a task that will execute when there is new data in MYSTREAM without having to be executed manually?
A)

B)

C)

D)

A Data Analyst created a cost overview dashboard in Snowsight. Management has asked for a system date filter to easily change the time period and refresh the data in all dashboard tiles with a single filter selection.
The system date filter is shown below:

The Analyst wants to apply the filter onto individual dashboard components.
Adding which where clause to the queries will apply the filter as required?
A Data Analyst is creating a Snowsight dashboard from a shared worksheet. What happens to the access and permissions of the users who initially had sharing privileges on the worksheet?
What functions should a Data Analyst use to run descriptive analytics on a data set? (Select TWO).
This query is run:
SQL
SELECT
customer.id,
ANY_VALUE(customer.name),
SUM(orders.value)
FROM customer
JOIN orders ON customer.id = orders.customer_id
GROUP BY customer.id;
What is the effect of ANY_VALUE in this syntax?
A Data Analyst has a Parquet file stored in an Amazon S3 staging area. Which query will copy the data from the staged Parquet file into separate columns in the target table?

A Data Analyst created two tables that are related by a foreign key, using the following commands:

Then the Analyst renamed the referenced table using the following command: ALTER TABLE mother RENAME TO father; What happens to the foreign key after the referenced table is renamed?
A company is looking for new headquarters and wants to minimize the distances employees have to commute. The company has geographic data on employees' residences. Through the Snowflake Marketplace, the company obtained geographic data for possible locations of the new headquarters. How can the distance between an employee's residence and potential headquarters locations be calculated in meters with the LEAST operational overhead?
Which Snowflake SQL would a Data Analyst use in a trained Cortex model named forecast_model to retrieve the components that contribute to the predictions?
Consider the following chart.

What can be said about the correlation for sales over time between the two categories?