Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam SnowPro Advanced Architect All Questions

View all questions & answers for the SnowPro Advanced Architect exam

Exam SnowPro Advanced Architect topic 1 question 91 discussion

Actual exam question from Snowflake's SnowPro Advanced Architect
Question #: 91
Topic #: 1
[All SnowPro Advanced Architect Questions]

What transformations are supported in the below SQL statement? (Choose three.)

CREATE PIPE ... AS COPY ... FROM (...)

  • A. Data can be filtered by an optional WHERE clause.
  • B. Columns can be reordered.
  • C. Columns can be omitted.
  • D. Type casts are supported.
  • E. Incoming data can be joined with other tables.
  • F. The ON_ERROR - ABORT_STATEMENT command can be used.
Show Suggested Answer Hide Answer
Suggested Answer: ABC 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
akellaanurag
3 weeks, 1 day ago
correct answer is B,C,D Using a query as the source for the COPY statement for column reordering, column omission, and casts (i.e. transforming data during a load) is supported. For usage examples, see Transforming data during a load. Note that only simple SELECT statements are supported. Filtering using a WHERE clause is not supported.
upvoted 1 times
...
Acaer
2 months, 1 week ago
Selected Answer: BCD
Using a query as the source for the COPY statement for column reordering, column omission, and casts (i.e. transforming data during a load) is supported. https://docs.snowflake.com/en/sql-reference/sql/create-pipe#usage-notes
upvoted 1 times
...
6c79d6f
2 months, 1 week ago
Selected Answer: BCD
Using a query as the source for the COPY statement for column reordering, column omission, and casts (i.e. transforming data during a load) is supported.
upvoted 1 times
...
imdashi
3 months, 3 weeks ago
B,C,D, where clause not supported in COPY
upvoted 1 times
...
NachoPrendes
4 months ago
Selected Answer: ABC
Agree with MSIDDIQUI18
upvoted 1 times
...
MSIDDIQUI18
4 months, 2 weeks ago
A: You can specify a WHERE clause to filter data before it is copied into Snowflake. This allows you to select specific rows based on certain conditions. B: When you define the structure of the target table in Snowflake using CREATE PIPE, you can specify the order of columns. This means you can control the order in which incoming data columns are mapped to the target table. C: Similar to reordering columns, you can specify only the columns from the incoming data that you want to copy into the target table. Columns that are not specified in the CREATE PIPE statement will be ignored during the data copy process.
upvoted 2 times
...
Atomic_Gecko
8 months, 3 weeks ago
B, C, D. You can't use where clauses in a copy into statement
upvoted 2 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 ...