Snowflake · Schema
DynamicTableClone
Clone dynamic table
Data LakesData SharingData WarehousingDatabaseSQL
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Specifies the name for the dynamic table, must be unique for the schema in which the dynamic table is created |
| target_lag | object | |
| warehouse | string | Specifies the name of the warehouse that provides the compute resources for refreshing the dynamic table |
| point_of_time | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DynamicTableClone",
"title": "DynamicTableClone",
"type": "object",
"description": "Clone dynamic table",
"properties": {
"name": {
"type": "string",
"description": "Specifies the name for the dynamic table, must be unique for the schema in which the dynamic table is created",
"example": "Example Title"
},
"target_lag": {
"$ref": "common.yaml#/components/schemas/TargetLag"
},
"warehouse": {
"type": "string",
"description": "Specifies the name of the warehouse that provides the compute resources for refreshing the dynamic table",
"example": "example_value"
},
"point_of_time": {
"$ref": "common.yaml#/components/schemas/PointOfTime"
}
},
"required": [
"name"
]
}