id
stringlengths
16
145
text
stringlengths
1
179k
title
stringclasses
1 value
snowflake_docs/last_day_0_0.txt
/ 1. Construction 5. Extraction 29. Addition & Subtraction 38. Truncation 42. Conversion 57. Time Zone 59. Alerts date-time) LAST_DAY Categories:
snowflake_docs/array_min_1_0.txt
ARRAY_MIN ¶ array) , returns the element with the lowest value that is not a SQL NULL. If the input ARRAY is empty or contains only SQL NULL elements, this function returns NULL.
snowflake_docs/tables_2_0.txt
Columns ¶ Column Name | Data Type | Description ---|---|--- TABLE_CATALOG | TEXT | Database that the table belongs to. TABLE_SCHEMA | TEXT | Schema that the table belongs to. TABLE_NAME | TEXT | Name of the table. TABLE_OWNER | TEXT | Name of the role that owns the table. TABLE_TYPE | TEXT | Indicates th...
snowflake_docs/put_4_1.txt
ion always overwrites any existing files in the target stage with the local files you are uploading. The following clients support the OVERWRITE option for Snowflake accounts hosted on Amazon Web Services or Microsoft Azure: > * SnowSQL > > * Snowflake ODBC Driver > > * Snowflake JDBC Driver > > * Snowflake C...
snowflake_docs/octet_length_0_0.txt
/ 1. General Manipulation 34. Case Conversion 38. Regular Expression Matching 48. Other Matching/Comparison 66. Compression/Decompression 70. Encoding/Decoding 81. Cryptographic/Checksum 93. Hash (Non-cryptographic) 96. Co...
snowflake_docs/create-stage_9_0.txt
External stage parameters for Amazon S3-compatible storage ( ` externalStageParams ` ) ¶ > ` URL = 's3compat:// _ bucket _ [/ _ path _ /]' ` > > > Specifies the URL for the external location (existing bucket accessed using > an S3-compatible API endpoint) used to store data files, where: > > * ` _ bucket...
snowflake_docs/between_2_0.txt
Syntax ¶ <expr> [ NOT ] BETWEEN <lower_bound> AND <upper_bound> Copy
snowflake_docs/show-replication-accounts_4_0.txt
Usage Notes ¶ * Only account administrators (users with the ACCOUNTADMIN role) can execute this SQL command. * Returns results only when an account administrator (user with the ACCOUNTADMIN role) executes the command in a replication-enabled account. * Columns that start with the prefix ` is_ ` return eithe...
snowflake_docs/ternary-logic_4_0.txt
Logical Operators ¶ Given a BOOLEAN column ` C ` : If ` C ` is: | ` C AND NULL ` evaluates to: | ` C OR NULL ` evaluates to: | ` NOT C ` evaluates to: ---|---|---|--- TRUE | NULL | TRUE | FALSE FALSE | FALSE | NULL | TRUE NULL | NULL | NULL | NULL In addition: If ` C ` is: | ` C AND (NOT C) ...
snowflake_docs/drop-row-access-policy_6_0.txt
label-security-custom-role) . For general information about roles and privilege grants for performing SQL overview.html
snowflake_docs/alter-storage-integration_2_0.txt
Syntax ¶ ALTER [ STORAGE ] INTEGRATION [ IF EXISTS ] <name> SET [ cloudProviderParams ] [ ENABLED = { TRUE | FALSE } ] [ STORAGE_ALLOWED_LOCATIONS = ('<cloud>://<bucket>/<path>/' [ , '<cloud>://<bucket>/<path>/' ... ] ) ] [ STORAGE_BLOCKED_LOCATIONS = ('<cloud>://<bucket>/<path>/' [ , '<c...
snowflake_docs/create-warehouse_12_0.txt
Usage Notes ¶ * Regarding metadata: Attention Customers should ensure that no personal data (other than for a User object), sensitive data, export-controlled data, or other regulated data is entered as metadata when using the Snowflake service. For more information, see [ CREATE OR REPLACE _ <object> _ statements...
snowflake_docs/system_client_version_info_6_0.txt
Examples ¶ The following example retrieves the version information for all Snowflake clients and drivers. Note that the output has been manually formatted for better readability. SELECT SYSTEM$CLIENT_VERSION_INFO(); Copy [ { "clientId": "DOTNETDriver", "clientAppId": ".NET", "mi...
snowflake_docs/st_area_7_0.txt
Examples ¶
snowflake_docs/snowpipe_streaming_file_migration_history_2_0.txt
Columns ¶ Column Name | Data Type | Description ---|---|--- START_TIME | TIMESTAMP_LTZ | Start of the time (in the local time zone) range in which data migration took place. END_TIME | TIMESTAMP_LTZ | End of the time (in the local time zone) range in which data migration took place. CREDITS_USED | FLOAT | Nu...
snowflake_docs/create-alert_9_0.txt
| | | | _ day of week (0-6, SUN-SAT, or L)
snowflake_docs/operators-subquery_5_0.txt
Examples ¶ Use a ` != ALL ` subquery to find the departments that have no employees: > > SELECT department_id > FROM departments d > WHERE d.department_id != ALL (SELECT e.department_id > FROM employees e); > > > Copy
snowflake_docs/operators-arithmetic_5_0.txt
Examples ¶ select 10.01 n1, 1.1 n2, n1 * n2; +-------+-----+---------+ | N1 | N2 | N1 * N2 | |-------+-----+---------| | 10.01 | 1.1 | 11.011 | +-------+-----+---------+ select 10.001 n1, .001 n2, n1 * n2; +--------+-------+----------+ | I1 | I2 | I1 * I2 | |-----...
snowflake_docs/get_config_5_0.txt
label-budgets-application-roles) for the account budget.
snowflake_docs/current_transaction_4_0.txt
Examples ¶ This shows the transaction ID of the current transaction: > > SELECT CURRENT_TRANSACTION(); > > > Copy > > Output: > > > +-----------------------+ > | CURRENT_TRANSACTION() | > |-----------------------| > | 1661899308790000000 | > +-----------------------+ > > > Copy Was ...
snowflake_docs/aggregate_access_history_4_0.txt
Usage Notes ¶ * Latency for the view may be up to 180 minutes (3 hours). * This Account Usage view can be used to query the aggregated access history of Snowflake objects (e.g. table, view, column) within the last 365 days (1 year). Was this page helpful? Yes No Inc. All Rights Reserved . On this page 1. ...
snowflake_docs/create-stage_13_4.txt
fies whether to skip the BOM (byte order mark), if present in a data file. A BOM is a character code at the beginning of a data file that defines the byte order and encoding form. If set to ` FALSE ` , Snowflake recognizes any BOM in data files, which could result in the BOM either causing an error or being merged int...
snowflake_docs/alter-replication-group_20_0.txt
Executed from the target account ¶ Refresh objects in the replication group ` myrg ` in the target account: ALTER REPLICATION GROUP myrg REFRESH; Copy Suspend automatic refreshes: ALTER REPLICATION GROUP myrg SUSPEND; Copy Was this page helpful? Yes No Inc. All Rights Reserved . On this page 1. Syntax ...
snowflake_docs/system_add_event_4_0.txt
Examples ¶ Code in the following example uses the SYSTEM$ADD_EVENT function to add an event named ` name_a ` and an event named ` name_b ` . With ` name_b ` , it associates two attributes, ` score ` and ` pass ` . The code also sets two attributes for the span, ` attr1 ` and ` attr2 ` . create procedure M...
snowflake_docs/insert-multi-table_0_0.txt
/ reference/sql/insert) Multi-table
snowflake_docs/like_any_7_0.txt
Collation Details ¶ Only the ` upper ` , ` lower ` , and ` trim ` collation specifications are supported. Combinations with ` upper ` , ` lower ` , and ` trim ` are also supported (for example, ` upper-trim ` and ` lower-trim ` ), except for locale combinations (for example, ` en-upper ` ). Note To use this...
snowflake_docs/create-security-integration-oauth-snowflake_0_0.txt
/ 1. General 7. API 10. Catalog 15. External access 18. Notification 21. Security 25. Storage Snowflake OAuth
snowflake_docs/databases_0_0.txt
/ Schema:
snowflake_docs/show-columns_3_1.txt
in use: > * Database: ` DATABASE ` is the default (i.e. the command returns the > objects you have privileges to view in the database). > > * No database: ` ACCOUNT ` is the default (i.e. the command returns the > objects you have privileges to view in your account). > >
snowflake_docs/system_revoke_stage_privatelink_access_1_0.txt
SYSTEM$REVOKE_STAGE_PRIVATELINK_ACCESS ¶ Revokes the authorization for Snowflake to access the Microsoft Azure Private guide/private-internal-stages-azure) for the current account. See also: [ SYSTEM$AUTHORIZE_STAGE_PRIVATELINK_ACCESS azure.html
snowflake_docs/system_get_tag_allowed_values_1_0.txt
SYSTEM$GET_TAG_ALLOWED_VALUES ¶ Returns a comma-separated list of string values that can be set on a [ supported-objects) , or NULL to indicate the tag key does not have any tagging) string values. See also:
snowflake_docs/booland_agg_4_0.txt
Returns ¶ The data type of the returned value is BOOLEAN.
snowflake_docs/system_cancel_query_3_0.txt
Arguments ¶ ` _ query_id _ ` Identifier for the query to cancel. To obtain the ID for a query executed within the last 14 days, log into the web interface and go to the History [
snowflake_docs/drop-budget_7_0.txt
label-security-custom-role) . For general information about roles and privilege grants for performing SQL control-overview.html
snowflake_docs/data-types-semistructured_2_0.txt
VARIANT ¶
snowflake_docs/current_user_0_0.txt
/ 1. General 14. Session 29. Session Object 41. Alert context) CURRENT_USER Categories:
snowflake_docs/call-with_6_0.txt
JavaScript ¶ WITH <name> AS PROCEDURE ([ <arg_name> <arg_data_type> ]) [ , ... ] ) RETURNS <result_data_type> [ [ NOT ] NULL ] LANGUAGE JAVASCRIPT [ { CALLED ON NULL INPUT | { RETURNS NULL ON NULL INPUT | STRICT } } ] AS '<procedure_definition>' [ , <cte_nameN> [ ( <cte_column_list>...
snowflake_docs/h3_point_to_cell_5_0.txt
Examples ¶ The following example returns the H3 cell ID for the Brandenburg Gate at resolution 8. SELECT H3_POINT_TO_CELL(ST_POINT(13.377704, 52.516262), 8); Copy +-----------------------------------------------------+ | H3_POINT_TO_CELL(ST_POINT(13.377704, 52.516262), 8) | |-------------------------...
snowflake_docs/data-type-conversion_4_0.txt
Explicit Casting ¶ Users can explicitly cast a value by using any of the following options: * The ` :: ` operator (called the _cast operator_ ). For example: > > SELECT CAST('2022-04-01' AS DATE); > > SELECT '2022-04-01'::DATE; > > SELECT TO_DATE('2022-04-01'); > > > Copy Casting is allowed in ...
snowflake_docs/desc-stream_1_0.txt
DESCRIBE STREAM ¶ Describes the columns in a stream. DESCRIBE can be abbreviated to DESC. See also:
snowflake_docs/data-types-structured_27_0.txt
Getting the List of Keys from a MAP ¶ function: SELECT MAP_KEYS({'my_key':'my_value'}::MAP(VARCHAR,VARCHAR)); Copy
snowflake_docs/alter-task_1_0.txt
ALTER TASK ¶ Modifies the properties for an existing task. See also:
snowflake_docs/alter-notification-integration_6_0.txt
label-create-notification-integration- cloudproviderparamspush) section of [ CREATE NOTIFICATION INTEGRATION
snowflake_docs/commands-warehouse_2_0.txt
Virtual Warehouses ¶
snowflake_docs/decompress_string_1_0.txt
DECOMPRESS_STRING ¶ Decompresses the compressed ` BINARY ` input parameter to a string. See also:
snowflake_docs/snowflake-db_0_0.txt
/ Snowflake Database
snowflake_docs/drop-image-repository_4_0.txt
Access control requirements ¶ access-control-overview-roles) used to execute this SQL command must have the overview.html
snowflake_docs/show-aggregation-policies_5_0.txt
Access control requirements ¶ access-control-overview-roles) used to execute this SQL command must have at control-overview.html
snowflake_docs/select_7_0.txt
Parameters ¶ ` WAIT ` An integer specifies the maximum time (in seconds) this statement waits on acquiring locks.
snowflake_docs/create-stream_0_0.txt
/ 1. Stream 7. Task
snowflake_docs/base64_decode_string_0_0.txt
/ 1. General Manipulation 34. Case Conversion 38. Regular Expression Matching 48. Other Matching/Comparison 66. Compression/Decompression 70. Encoding/Decoding 81. Cryptographic/Checksum 93. Hash (Non-cryptographic) 96. Co...
snowflake_docs/regr_sxx_5_0.txt
Examples ¶ create or replace table aggr(k int, v decimal(10,2), v2 decimal(10, 2)); insert into aggr values(1, 10, null); insert into aggr values(2, 10, 11), (2, 20, 22), (2, 25,null), (2, 30, 35); Copy select k, regr_sxx(v, v2) from aggr group by k; ---+-----------------+ k | regr_sxx(v, v2...
snowflake_docs/show-alerts_1_0.txt
SHOW ALERTS ¶ privileges. The command can be used to list alerts for the current/specified database or schema, or across your entire account. The output returns alert metadata and properties, ordered lexicographically by database, schema, and alert name (see Output in this topic for descriptions of the output colu...
snowflake_docs/system_user_task_cancel_ongoing_executions_1_0.txt
SYSTEM$USER_TASK_CANCEL_ONGOING_EXECUTIONS ¶ Aborts a run of the specified task that the system has already started to process (i.e. a run with an EXECUTING state in the [ TASK_HISTORY
snowflake_docs/system_typeof_5_0.txt
Usage Notes ¶
snowflake_docs/execute-immediate-from_9_0.txt
Usage Notes ¶ * The SQL statements in a file to be executed can include EXECUTE IMMEDIATE FROM statements: * Nested EXECUTE IMMEDIATE FROM statements _can_ use relative file paths . Relative paths are evaluated in respect to the stage and file path of the parent file. If the relative file path starts with ...
snowflake_docs/resource_monitors_2_0.txt
Columns ¶ Column Name | Data Type | Description ---|---|--- READER_ACCOUNT_NAME | TEXT | Name of the reader account where the resource monitor was created. NAME | TEXT | Name of the resource monitor. CREATED | TIMESTAMP_LTZ | Date and time when the resource monitor was created. CREDIT_QUOTA | VARIANT | Mon...
snowflake_docs/getvariable_2_0.txt
Syntax ¶ GETVARIABLE( '<name>' ) Copy
snowflake_docs/dynamic_table_refresh_history_1_0.txt
DYNAMIC_TABLE_REFRESH_HISTORY ¶ Available to accounts. This table function returns information about each refresh (completed and This table function returns all refreshes that are in progress as well as all refreshes that have a REFRESH_VERSION within 1 day of the current time.
snowflake_docs/desc-streamlit_0_0.txt
/ STREAMLIT
snowflake_docs/replication_usage_history_3_0.txt
Arguments ¶ All the arguments are optional. ` DATE_RANGE_START => _ constant_expr _ ` , . ` DATE_RANGE_END => _ constant_expr _ ` The date/time range to display the database replication history: * If a start date is not specified, then the range starts 10 minutes prior to the start of ` DATE_RANGE_END ` (i....
snowflake_docs/accounts_4_0.txt
label-connecting-via-url) that includes the values of organization_name and account_name. ACCOUNT_OLD_URL | VARCHAR | connect.html
snowflake_docs/create-security-integration-saml2_3_0.txt
Required parameters ¶ ` _ name _ ` String that specifies the identifier (i.e. name) for the integration; must be unique in your account. In addition, the identifier must start with an alphabetic character and cannot contain spaces or special characters unless the entire identifier string is enclosed in double quote...
snowflake_docs/parse_ip_6_1.txt
AS ( > SELECT column1 AS tag, PARSE_IP(column2, 'INET') AS obj FROM > VALUES('San Francisco', '192.168.242.0/24'), ('New York', > '192.168.243.0/24') > ), > entries AS ( > SELECT PARSE_IP(column1, 'INET') AS ipv4 FROM > VALUES('192.168.242.188/24'), ('192.168.243.189/24') > ) > SELECT lookup...
snowflake_docs/get_query_operator_stats_16_0.txt
label-data-type-object) . The OBJECT contains key/value pairs. Each key corresponds to one attribute of the operator. Operator Name | Key | Data Type | Description ---|---|---|--- ` Aggregate ` | | | | ` functions ` | ARRAY of VARCHAR | List of functions computed. | ` grouping_keys ` | ARRAY of VARCHAR | T...
snowflake_docs/drop-resource-monitor_2_0.txt
Syntax ¶ DROP RESOURCE MONITOR [ IF EXISTS ] <name> Copy
snowflake_docs/h3_string_to_int_2_0.txt
Syntax ¶ H3_STRING_TO_INT( <cell_id> ) Copy
snowflake_docs/create-failover-group_16_0.txt
Access Control Requirements ¶ access-control-overview-roles) used to execute this SQL command must have the overview.html
snowflake_docs/ceil_3_0.txt
Arguments ¶ ` _ input_expr _ ` The value or expression to operate on. The data type should be one of the numeric data types, such as FLOAT or NUMBER. ` _ scale_expr _ ` The number of digits the output should include after the decimal point. The expression should evaluate to an integer from -38 to +38. The default ...
snowflake_docs/system_get_cmk_akv_consent_url_1_0.txt
SYSTEM$GET_CMK_AKV_CONSENT_URL ¶ Returns a consent URL to the Azure Key Vault account related to customer- managed keys for use with Tri-Secret Secure for Snowflake accounts on Microsoft Azure. See also: guide/security-encryption-manage)
snowflake_docs/hll_accumulate_2_0.txt
Syntax ¶ HLL_ACCUMULATE( [ DISTINCT ] <expr> ) HLL_ACCUMULATE(*) Copy
snowflake_docs/show-compute-pools_0_0.txt
/ 1. IMAGE REGISTRY AND REPOSITORY 5. COMPUTE POOL 11. SERVICE 18. JOB container-services) SHOW COMPUTE POOLS
snowflake_docs/commands-data-governance_2_0.txt
Column-level Security ¶
snowflake_docs/alter-failover-group_18_0.txt
Usage Notes ¶ * The following minimal privileges are required: * To refresh a secondary failover group using ALTER FAILOVER GROUP … REFRESH, the active, primary role must have either the OWNERSHIP or REPLICATE privilege on the failover group. * To fail over a secondary failover group using ALTER FAILOVER...
snowflake_docs/show-versions-in-model_3_0.txt
Parameters ¶ ` LIKE ' _ pattern _ ' ` Optionally filters the command output by object name. The filter uses case- insensitive pattern matching, with support for SQL wildcard characters ( ` % ` and ` _ ` ). For example, the following patterns return the same results: ` ... LIKE '%testing%' ... ` ` ... L...
snowflake_docs/st_npoints_6_0.txt
Usage Notes ¶ * Each Polygon loop lists the starting point twice (once as the start, once as the end). ST_NPOINTS counts both occurrences. For example, given a triangular Polygon, ST_NPOINTS returns 4, not 3. * ST_NUMPOINTS is an alias for ST_NPOINTS. Note In some other systems, ST_NUMPOINTS behaves differentl...
snowflake_docs/collation_6_0.txt
Collation SQL Constructs ¶ You can use the following SQL constructs for collation: * COLLATE Clause (for Table Column Definitions) * COLLATE Function * COLLATION Function
snowflake_docs/create-failover-group_19_0.txt
label-access-control-securable-objects) , see [ Overview of
snowflake_docs/base64_decode_binary_2_0.txt
Syntax ¶ BASE64_DECODE_BINARY( <input> [ , <alphabet> ] ) Copy
snowflake_docs/create-authentication-policy_4_0.txt
Optional Parameters ¶ ` CLIENT_TYPES = ( ' _ string_literal _ ' [ , ' _ string_literal _ ' , ... ] ) ` A list of clients that can authenticate with Snowflake. If a client tries to connect, and the client is not one of the valid ` CLIENT_TYPES ` , then the login attempt fails. This parameter accepts on...
snowflake_docs/break_1_0.txt
BREAK (Snowflake Scripting) ¶ ` BREAK ` (or ` EXIT ` ) terminates a loop. For more information on terminating loops, see [ Terminating a Loop terminate) . Note construct is valid only within a [ Snowflake Scripting block See also :
snowflake_docs/as_date_2_0.txt
Syntax ¶ AS_DATE( <variant_expr> ) Copy
snowflake_docs/snowflake-db-roles_5_0.txt
READER_ACCOUNT_USAGE schema ¶ The READER_USAGE_VIEWER SNOWFLAKE database role is granted SELECT privilege on all READER_ACCOUNT_USAGE views. As reader accounts are created by clients, the READER_USAGE_VIEWER role is expected to be granted to those roles used to monitor reader account use. View ---
snowflake_docs/split_1_0.txt
SPLIT ¶ Splits a given string with a given separator and returns the result in an array of strings. Contiguous split strings in the source string, or the presence of a split string at the beginning or end of the source string, results in an empty string in the output. An empty separator string results in an array co...
snowflake_docs/timestampdiff_1_0.txt
TIMESTAMPDIFF ¶ Calculates the difference between two date, time, or timestamp expressions based on the specified date or time part. The function returns the result of subtracting the second argument from the third argument.
snowflake_docs/time_slice_3_0.txt
Arguments ¶ **Required:** ` _ date_or_time_expr _ ` The function returns the start or end of the slice that contains this date or time. The expression must be of type DATE or TIMESTAMP_NTZ. ` _ slice_length _ ` This indicates the width of the slice (i.e. how many units of time are contained in the slice). For exam...
snowflake_docs/array_union_agg_6_0.txt
Examples ¶
snowflake_docs/system_revoke_stage_privatelink_access_3_0.txt
Syntax ¶ -- Azure SYSTEM$REVOKE_STAGE_PRIVATELINK_ACCESS( '<privateEndpointResourceID>' ) Copy
snowflake_docs/degrees_4_0.txt
Returns ¶ This returns a value of type [ REAL/FLOAT (double-precision floating point)
snowflake_docs/split_4_0.txt
Returns ¶ The data type of the returned value is ARRAY.
snowflake_docs/data-types-structured_35_0.txt
Comparing Structured Objects With Other Structured Objects ¶ You can compare two objects of the same type (e.g. two structured ARRAYs, two structured OBJECTs, or two MAPs). Currently, the following comparison operators are supported for comparing structured types: * ` = ` * ` != ` * ` < ` * ` <= ` * ` >...
snowflake_docs/grants_to_roles_3_0.txt
Usage Notes ¶ Latency for the view may be up to 120 minutes (2 hours). Was this page helpful? Yes No Inc. All Rights Reserved . On this page 1. Columns 2. Usage Notes Language : **English**
snowflake_docs/task_dependents_5_0.txt
Usage Notes ¶ * Only returns rows for a task owner (i.e. the role with the OWNERSHIP privilege on a task) or a role with either the MONITOR or OPERATE privilege on a task.
snowflake_docs/last_value_3_0.txt
Arguments ¶ ` _ expr _ ` The expression that determines the return value. ` _ expr1 _ ` The expression by which to partition the rows. You can specify a single expression or a comma-separated list of expressions. For example: PARTITION BY column_1, column_2 Copy ` _ expr2 _ ` The expression by which to order ...
snowflake_docs/initcap_3_0.txt
Usage Notes ¶ * ` _ delimiters _ ` is an optional argument specifying a string of one or more characters that INITCAP uses as separators for words in the input expression: > * If ` _ delimiters _ ` is not specified, any of the following > characters in the input expressions are treated as word separators: >...
snowflake_docs/match_recognize_16_1.txt
ncluding the first row up to and including the current row (or last row in case of a ` FINAL ` semantic) for the first row that was finally mapped to the specified ` <symbol> ` . If the searched part of the frame does not contain a row mapped to ` <symbol> ` , NULL is returned. * ` _ LAST/LAST_VALUE( ... <symbol>...
snowflake_docs/current_version_4_0.txt
Returns ¶ The data type of the returned value is VARCHAR. The returned value contains four fields: > > <major_version>.<minor_version>.<patch_version> <internal_identifier> > > > Copy > > ` _ major_version _ ` > > > Major version numbers change annually. For example, the major version for > all releases in...
snowflake_docs/create-pipe_3_0.txt
Required parameters ¶ ` _ name _ ` Identifier for the pipe; must be unique for the schema in which the pipe is created. The identifier must start with an alphabetic character and cannot contain spaces or special characters unless the entire identifier string is enclosed in double quotes (e.g. ` "My object" ` ). I...
snowflake_docs/collate_4_0.txt
Returns ¶ Returns a copy of the original string, but with the specified ` _ collation_specification _ ` property instead of the original ` _ collation_specification _ ` .
snowflake_docs/alter-iceberg-table_8_0.txt
label-access-control-securable-objects) , see [ Overview of