Question 56

Find out the odd one out:
  • Question 57

    Mark the Correct Statements:
    Statement 1. Enable failover for a primary database to one or more accounts in your organization using an ALTER DATABASE ... ENABLE FAILOVER TO ACCOUNTS statement.
    Statement 2. Enabling failover for a primary database can be done by Data Engineer either before or after a replica of the primary database has been created in a specified account.
  • Question 58

    PARTITION_TYPE = USER_SPECIFIED must be used when you prefer to add and remove par-titions selectively rather than automatically adding partitions for all new files in an external storage location that match an expression?
  • Question 59

    You as Data engineer might want to consider disabling auto-suspend for a warehouse if?
  • Question 60

    Elon, a Data Engineer, needs to Split Semi-structured Elements from the Source files and load them as an array into Separate Columns.
    Source File:
    1.+----------------------------------------------------------------------+
    2.| $1 |
    3.|----------------------------------------------------------------------|
    4.| {"mac_address": {"host1": "197.128.1.1","host2": "197.168.0.1"}}, |
    5.| {"mac_address": {"host1": "197.168.2.1","host2": "197.168.3.1"}} |
    6.+----------------------------------------------------------------------+ Output: Splitting the Machine Address as below.
    1.COL1 | COL2 |
    2.|----------+----------|
    3.| [ | [ |
    4.| "197", | "197", |
    5.| "128", | "168", |
    6.| "1", | "0", |
    7.| "1" | "1" |
    8.| ] | ] |
    9.| [ | [ |
    10.| "197", | "197", |
    11.| "168", | "168", |
    12.| "2", | "3", |
    13.| "1" | "1" |
    14.| ] | ]
    Which SnowFlake Function can Elon use to transform this semi structured data in the output for-mat?