exam questions

Exam SnowPro Advanced Data Engineer All Questions

View all questions & answers for the SnowPro Advanced Data Engineer exam

Exam SnowPro Advanced Data Engineer topic 1 question 35 discussion

Actual exam question from Snowflake's SnowPro Advanced Data Engineer
Question #: 35
Topic #: 1
[All SnowPro Advanced Data Engineer Questions]

A Data Engineer wants to check the status of a pipe named my_pipe. The pipe is inside a database named test and a schema named Extract (case-sensitive).
Which query will provide the status of the pipe?

  • A. SELECT SYSTEM$PIPE_STATUS("test.'extract'.my_pipe");
  • B. SELECT SYSTEM$PIPE_STATUS('test."Extract".my_pipe');
  • C. SELECT * FROM SYSTEM$PIPE_STATUS('test."Extract".my_pipe');
  • D. SELECT * FROM SYSTEM$PIPE_STATUS("test.'extract'.my_pipe");
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
prshntdxt7
10 months, 2 weeks ago
Selected Answer: B
The correct query to check the status of a pipe named my_pipe inside a database named test and a case-sensitive schema named Extract is: B. SELECT SYSTEM$PIPE_STATUS('test."Extract".my_pipe'); This query uses double quotes around the schema name "Extract" to ensure that the case sensitivity is preserved. Additionally, the single quotes around the pipe name my_pipe and the dot notation for specifying the database and schema are correct in Snowflake SQL syntax.
upvoted 1 times
...
stopthisnow
1 year ago
Selected Answer: B
SELECT SYSTEM$PIPE_STATUS('mydb.myschema.mypipe');
upvoted 2 times
SV1122
11 months, 2 weeks ago
https://docs.snowflake.com/en/sql-reference/functions/system_pipe_status
upvoted 1 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...