Exam Details

  • Exam Code
    :ARA-C01
  • Exam Name
    :SnowPro Advanced: Architect Certification (ARA-C01)
  • Certification
    :Snowflake Certifications
  • Vendor
    :Snowflake
  • Total Questions
    :65 Q&As
  • Last Updated
    :May 22, 2025

Snowflake Snowflake Certifications ARA-C01 Questions & Answers

  • Question 61:

    An Architect needs to allow a user to create a database from an inbound share.

    To meet this requirement, the user's role must have which privileges? (Choose two.)

    A. IMPORT SHARE;

    B. IMPORT PRIVILEGES;

    C. CREATE DATABASE;

    D. CREATE SHARE;

    E. IMPORT DATABASE;

  • Question 62:

    A DevOps team has a requirement for recovery of staging tables used in a complex set of data pipelines. The staging tables are all located in the same staging schema. One of the requirements is to have online recovery of data on a rolling 7day basis.

    After setting up the DATA_RETENTION_TIME_IN_DAYS at the database level, certain tables remain unrecoverable past 1 day.

    What would cause this to occur? (Choose two.)

    A. The staging schema has not been setup for MANAGED ACCESS.

    B. The DATA_RETENTION_TIME_IN_DAYS for the staging schema has been set to 1 day.

    C. The tables exceed the 1 TB limit for data recovery.

    D. The staging tables are of the TRANSIENT type.

    E. The DevOps role should be granted ALLOW_RECOVERY privilege on the staging schema.

  • Question 63:

    A company's client application supports multiple authentication methods, and is using Okta.

    What is the best practice recommendation for the order of priority when applications authenticate to Snowflake?

    A. 1) OAuth (either Snowflake OAuth or External OAuth) 2) External browser 3) Okta native authentication 4) Key Pair Authentication, mostly used for service account users

    5) Password

    B. 1) External browser, SSO 2) Key Pair Authentication, mostly used for development environment users 3) Okta native authentication 4) OAuth (ether Snowflake OAuth or External OAuth) 5) Password

    C. 1) Okta native authentication 2) Key Pair Authentication, mostly used for production environment users 3) Password 4) OAuth (either Snowflake OAuth or External OAuth) 5) External browser, SSO

    D. 1) Password 2) Key Pair Authentication, mostly used for production environment users 3) Okta native authentication 4) OAuth (either Snowflake OAuth or External OAuth) 5) External browser, SSO

  • Question 64:

    Which system functions does Snowflake provide to monitor clustering information within a table (Choose two.)

    A. SYSTEM$CLUSTERING_INFORMATION

    B. SYSTEM$CLUSTERING_USAGE

    C. SYSTEM$CLUSTERING_DEPTH

    D. SYSTEM$CLUSTERING_KEYS

    E. SYSTEM$CLUSTERING_PERCENT

  • Question 65:

    An Architect has been asked to clone schema STAGING as it looked one week ago, Tuesday June 1st at 8:00 AM, to recover some objects.

    The STAGING schema has 50 days of retention.

    The Architect runs the following statement:

    CREATE SCHEMA STAGING_CLONE CLONE STAGING at (timestamp => '2021-06-01 08:00:00');

    The Architect receives the following error: Time travel data is not available for schema STAGING. The requested time is either beyond the allowed time travel period or before the object creation time.

    The Architect then checks the schema history and sees the following:

    CREATED_ON|NAME|DROPPED_ON

    2021-06-02 23:00:00 | STAGING | NULL

    2021-05-01 10:00:00 | STAGING | 2021-06-02 23:00:00

    How can cloning the STAGING schema be achieved?

    A. Undrop the STAGING schema and then rerun the CLONE statement.

    B. Modify the statement: CREATE SCHEMA STAGING_CLONE CLONE STAGING at (timestamp => '2021-05-01 10:00:00');

    C. Rename the STAGING schema and perform an UNDROP to retrieve the previous STAGING schema version, then run the CLONE statement.

    D. Cloning cannot be accomplished because the STAGING schema version was not active during the proposed Time Travel time period.