-2

In Snowflake Which of the following objects can be cloned? A. Tables B. Named File Formats C. Schemas D. Shares E. Databases F. Users

Tables, Schemas and Databases I know but can we also clone Users or Named File Format?

Nicky
  • 125
  • 1
  • 9

2 Answers2

2

You can directly clone DATABASE, SCHEMA, TABLE, STREAM, STAGE, FILE FORMAT, SEQUENCE, and TASK objects:

https://docs.snowflake.com/en/sql-reference/sql/create-clone.html#syntax

Greg Pavlik
  • 10,089
  • 2
  • 12
  • 29
1

In Snowflake, the following objects can be cloned:

  • Data Containment Objects

    • Databases
    • Schemas
    • Tables
    • Streams
  • Data Configuration and Transformation Objects

    • Stages (external only - not internal)
    • File Formats
    • Sequences
    • Tasks

The following account level objects cannot be cloned:

  • Users
  • Roles
  • Grants
  • Virtual Warehouses
  • Resource monitors
  • Storage integrations
Robert Long
  • 5,722
  • 5
  • 29
  • 50