ExamGecko
Question list
Search
Search

Question 285 - SnowPro Core discussion

Report
Export

What is the recommended way to change the existing file format type in my format from CSV to JSON?

A.
ALTER FILE FORMAT my_format SET TYPE=JSON;
Answers
A.
ALTER FILE FORMAT my_format SET TYPE=JSON;
B.
ALTER FILE FORMAT my format SWAP TYPE WITH JSON;
Answers
B.
ALTER FILE FORMAT my format SWAP TYPE WITH JSON;
C.
CREATE OR REPLACE FILE FORMAT my format TYPE-JSON;
Answers
C.
CREATE OR REPLACE FILE FORMAT my format TYPE-JSON;
D.
REPLACE FILE FORMAT my format TYPE-JSON;
Answers
D.
REPLACE FILE FORMAT my format TYPE-JSON;
Suggested answer: A

Explanation:

To change the existing file format type from CSV to JSON, the recommended way is to use the ALTER FILE FORMAT command with the SET TYPE=JSON clause. This alters the file format specification to use JSON instead of CSV.Reference:Based on my internal knowledge as of 2021.

asked 23/09/2024
Deshawn Sharpe
38 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first