Snowflake Related Exams
ARA-C01 Exam
Which of the following ingestion methods can be used to load near real-time data by using the messaging services provided by a cloud provider?
An Architect wants to integrate Snowflake with a Git repository that requires authentication. What is the correct sequence of steps to be followed?

An Architect has a table called leader_follower that contains a single column named JSON. The table has one row with the following structure:
{
"activities": [
{ "activityNumber": 1, "winner": 5 },
{ "activityNumber": 2, "winner": 4 }
],
"follower": {
"name": { "default": "Matt" },
"number": 4
},
"leader": {
"name": { "default": "Adam" },
"number": 5
}
}
Which query will produce the following results?
ACTIVITY_NUMBER
WINNER_NAME
1
Adam
2
Matt