id
stringlengths
16
145
text
stringlengths
1
179k
title
stringclasses
1 value
snowflake_docs/array_cat_0_0.txt
/ 1. JSON and XML Parsing 9. Array/Object Creation and Manipulation 43. Map Creation and Manipulation 51. Extraction 58. Conversion/Casting 82. Type Predicates Categories: semistructured) (Array/Object)
snowflake_docs/current_database_4_0.txt
Examples ¶ Show the current warehouse, database, and schema: > > SELECT CURRENT_WAREHOUSE(), CURRENT_DATABASE(), CURRENT_SCHEMA(); > > > Copy > > Output: > > > +---------------------+--------------------+------------------+ > | CURRENT_WAREHOUSE() | CURRENT_DATABASE() | CURRENT_SCHEMA() | > |--...
snowflake_docs/commands-security_6_0.txt
Password policy ¶
snowflake_docs/create-tag_4_0.txt
Optional parameters ¶ ` ALLOWED_VALUES ' _ val_1 _ ' [ , ' _ val_2 _ ' [ , ... ] ] ` Specifies a comma-separated list of the possible string values that can be guide/object-tagging.html
snowflake_docs/system_get_tag_6_0.txt
Examples ¶ Returns ` NULL ` if a tag is not associated to the specified object: > > select system$get_tag('cost_center', 'my_table', 'table'); > > +-----------------------------------------------------+ > | SYSTEM$GET_TAG('COST_CENTER', 'MY_TABLE', 'TABLE') | > +----------------------------------...
snowflake_docs/revoke-database-role_0_0.txt
/ 1. User Management 7. Database Role Management 16. Account-level Role Management 25. Privilege Management REVOKE DATABASE ROLE
snowflake_docs/insert-multi-table_2_0.txt
Syntax ¶ -- Unconditional multi-table insert INSERT [ OVERWRITE ] ALL intoClause [ ... ] <subquery> -- Conditional multi-table insert INSERT [ OVERWRITE ] { FIRST | ALL } { WHEN <condition> THEN intoClause [ ... ] } [ ... ] [ ELSE intoClause ] <subquery> Copy Where: > ...
snowflake_docs/sessions_2_0.txt
Columns ¶ Column Name | Data Type | Description ---|---|--- SESSION_ID | Number | The unique identifier for the current session. CREATED_ON | TIMESTAMP_LTZ | Date and time (in the UTC time zone) when the session was created. USER_NAME | String | The user name of the user. AUTHENTICATION_METHOD | String | T...
snowflake_docs/copy-into-table_10_0.txt
TYPE = AVRO ¶ ` COMPRESSION = AUTO | GZIP | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE ` String (constant) that specifies the current compression algorithm for the data files to be loaded. Snowflake uses this option to detect how already- compressed data files were compressed so that the compressed...
snowflake_docs/ifnull_4_0.txt
Usage Notes ¶ * If possible, pass in arguments of the same type. Avoid passing in arguments of different types. For numeric string arguments that are not constants, if NUMBER(18,5) is not conversion.html
snowflake_docs/system_verify_ext_oauth_token_0_0.txt
/ 1. Control 29. Information 90. Query Information SYSTEM$VERIFY_EXTERNAL_OAUTH_TOKEN Categories:
snowflake_docs/where_6_0.txt
Simple Examples of Filtering ¶ The following show some simple uses of the WHERE clause: > > SELECT * FROM invoices > WHERE invoice_date < '2018-01-01'; > > SELECT * FROM invoices > WHERE invoice_date < '2018-01-01' > AND paid = FALSE; > > > Copy This example uses a subquery and shows ...
snowflake_docs/to_time_1_0.txt
TO_TIME , TIME ¶ Converts an input expression into a time. If input is NULL, returns NULL. See also:
snowflake_docs/drop-image-repository_5_0.txt
label-access-control-overview-privileges) at a minimum: Privilege | Object | Notes ---|---|--- OWNERSHIP | Image repository | Note that operating on any object in a schema also requires the USAGE privilege on the parent database and schema. For instructions on creating a custom role with a specified set of privil...
snowflake_docs/h3_cell_to_point_4_0.txt
Returns ¶ Returns a GEOGRAPHY object for the Point that represents the centroid of the H3 cell with the specified ID.
snowflake_docs/create-external-volume_7_0.txt
label-access-control-overview-privileges) at a minimum: Privilege | Object | Notes ---|---|--- CREATE EXTERNAL VOLUME | Account | Only the ACCOUNTADMIN role has this privilege by default. The privilege can be granted to additional roles as needed. For instructions on creating a custom role with a specified set of...
snowflake_docs/show-shares_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/array_construct_1_0.txt
ARRAY_CONSTRUCT ¶ Returns an array constructed from zero, one, or more inputs. See also:
snowflake_docs/rlike_3_0.txt
Arguments ¶ **Required:** ` _ subject _ ` Subject to match. ` _ pattern _ ` Pattern to match. **Optional:** ` _ parameters _ ` String of one or more characters that specifies the parameters used for searching for matches. Supported values: > ` c ` , ` i ` , ` m ` , ` e ` , ` s ` For more details, see [ Speci...
snowflake_docs/hex_decode_string_2_0.txt
Syntax ¶ HEX_DECODE_STRING(<input>) Copy
snowflake_docs/desc-sequence_2_0.txt
Syntax ¶ DESC[RIBE] SEQUENCE <name> Copy
snowflake_docs/collation_23_0.txt
Differences Between ` ci ` and ` upper ` / ` lower ` ¶ The ` upper ` and ` lower ` collation specifications can provide better performance than the ` ci ` collation specification during string comparison and sorting. However, ` upper ` and ` lower ` have slightly different effects from ` ci ` , as explained ...
snowflake_docs/intro-summary-operators-functions_1_0.txt
Summary of Functions ¶ Snowflake supports most of the standard functions defined in SQL:1999, as well as parts of the SQL:2003 analytic extensions.
snowflake_docs/system_global_account_set_parameter_5_0.txt
Usage Notes ¶ * Only organization administrators (i.e. users with the ORGADMIN role) can call this SQL function. * Multiple accounts can be enabled for replication from the same organization administrator account. * If you have more than one account with the same account locator in different regions, to enab...
snowflake_docs/alter-failover-group_16_1.txt
es failover from the current account to this target account. > ` _ org_name _ ` > > > Name of your Snowflake organization. > > ` _ target_account_name _ ` > > > Target account to which you are disabling replication of the specified > objects. ` IGNORE EDITION CHECK ` Allows replicating objects to accounts in t...
snowflake_docs/create-stage_17_0.txt
TYPE = PARQUET ¶ ` COMPRESSION = AUTO | LZO | SNAPPY | NONE ` Use : Data loading, data unloading, and external tables Definition : * When loading data, specifies the current compression algorithm for columns in the Parquet files. * When unloading data, compresses the data file using the specified com...
snowflake_docs/activate_1_0.txt
account_root_budget!ACTIVATE ¶ guide/intro-editions) . This feature is currently not available for [ Trial Accounts Activate the account budget. You must activate the account budget in order to
snowflake_docs/create-projection-policy_6_0.txt
label-access-control-overview-privileges) at a minimum: Privilege | Object | Notes ---|---|--- CREATE PROJECTION POLICY | Schema | Note that operating on any object in a schema also requires the USAGE privilege on the parent database and schema. For instructions on creating a custom role with a specified set of p...
snowflake_docs/functions-date-time_3_0.txt
Supported Date and Time Parts ¶ Certain functions (as well as their appropriate aliases and alternatives) accept a date or time part as an argument. The following two tables list the parts (case-insensitive) that can be used with these functions. Date Parts | Abbreviations / Variations | DATEADD | DATEDIFF | DATE_PA...
snowflake_docs/var_pop_1_0.txt
VAR_POP ¶ Returns the population variance of non-NULL records in a group. If all records inside a group are NULL, a NULL is returned. Aliases:
snowflake_docs/hll_import_1_0.txt
HLL_IMPORT ¶ Converts input in OBJECT format to BINARY format. The HyperLogLog states operated on by HLL_ACCUMULATE, HLL_COMBINE, and HLL_ESTIMATE are in a proprietary binary format that may change in future versions of Snowflake. For long-term storage of HyperLogLog states, and for integration with external tools, ...
snowflake_docs/parse_ip_3_0.txt
Arguments ¶ **Required:** ` _ expr _ ` A string expression. ` _ type _ ` A string that identifies the type of IP address. Supports either ` INET ` or ` CIDR ` ; the value is case-insenstitive. **Optional:** ` _ permissive _ ` Flag that determines how parse errors are handled: * If set to 0, parse errors cause...
snowflake_docs/rollback_2_0.txt
Syntax ¶ ROLLBACK [ WORK ] Copy
snowflake_docs/data_transfer_history_4_0.txt
Usage Notes ¶ * Returns results only for the ACCOUNTADMIN role or any role that has been explicitly granted the MONITOR USAGE global privilege.
snowflake_docs/functions-analytic_0_0.txt
/ 1. General 27. Rank-Related 39. Bitwise Aggregation 43. Boolean Aggregation 47. Hash Aggregation 49. Semi-structured Aggregation 52. Counting Distinct Values 55. Linear Regression 65. Statistics and Probability ...
snowflake_docs/result_scan_3_0.txt
Arguments ¶ ` _ query_id _ ` or ` LAST_QUERY_ID() ` Either the ID for a query you executed (within the last 24 hours in any ID for a query within your current session.
snowflake_docs/create-clone_16_0.txt
Troubleshoot cloning objects using Time Travel ¶ The following scenarios can help you troubleshoot issues that can occur when cloning an object using Time Travel. Error | 000707 (02000): Time travel data is not available for <object_type> <object_name>. The requested time is either beyond the allowed time ...
snowflake_docs/map_cat_1_0.txt
MAP_CAT ¶ available to all accounts.
snowflake_docs/rlike_5_0.txt
Usage Notes ¶ * The function implicitly anchors a pattern at both ends (i.e. ` '' ` automatically becomes ` '^$' ` , and ` 'ABC' ` automatically becomes ` '^ABC$' ` ). To match any string starting with ABC, the pattern would be ` 'ABC.*' ` .
snowflake_docs/create-versioned-schema_8_0.txt
label-security-custom-role) . For general information about roles and privilege grants for performing SQL overview.html
snowflake_docs/strtok_3_0.txt
Arguments ¶ **Required:** ` _ string _ ` Text to be tokenized. **Optional:** ` _ delimiter _ ` Text representing the set of delimiters to tokenize on. Each character in the delimiter string is a delimiter. If the delimiter is empty, and the ` _ string _ ` is empty, then the function returns NULL. If the delimiter ...
snowflake_docs/as_date_1_0.txt
AS_DATE ¶ Casts a VARIANT value to a date. Does not convert from timestamps. See also:
snowflake_docs/approximate_similarity_2_0.txt
Syntax ¶ APPROXIMATE_SIMILARITY( [ DISTINCT ] <expr> [ , ... ] ) APPROXIMATE_SIMILARITY(*) Copy
snowflake_docs/show-resource-monitors_4_0.txt
Usage Notes ¶ * Columns that start with the prefix ` is_ ` return either ` Y ` (yes) or ` N ` (no). * The command does not require a running warehouse to execute. * The command returns a maximum of 10K records for the specified object type, as dictated by the access privileges for the role used to execu...
snowflake_docs/grant-role_5_0.txt
label-access-control-overview-privileges) at a minimum: Privilege | Object | Notes ---|---|--- OWNERSHIP | Role | Role that is granted to a user or another role. Alternatively, use a role with the global MANAGE GRANTS privilege. Only the SECURITYADMIN role, or a higher role, has this privilege by default. The pri...
snowflake_docs/system_clustering_ratio_1_0.txt
SYSTEM$CLUSTERING_RATIO — _Deprecated_ ¶ This function has been deprecated. It will be obsoleted in a future release (TBD). Calculates the clustering ratio for a table, based on one or more columns in the table. The ratio is a number from ` 0 ` to ` 100 ` . The higher the ratio, the better clustered the table is. T...
snowflake_docs/database_refresh_progress_2_0.txt
Syntax ¶ DATABASE_REFRESH_PROGRESS( '<secondary_db_name>' ) DATABASE_REFRESH_PROGRESS_BY_JOB( '<query_id>' ) Copy
snowflake_docs/show-custom-classifiers_3_0.txt
Syntax ¶ SHOW SNOWFLAKE.DATA_PRIVACY.CUSTOM_CLASSIFIER [ LIKE <pattern> ] [ IN { ACCOUNT | DATABASE | DATABASE <database_name> | SCHEMA | SCHEMA <schema_name> | <schema_name> ...
snowflake_docs/forecast_21_0.txt
Syntax ¶ <name>!EXPLAIN_FEATURE_IMPORTANCE(); Copy
snowflake_docs/copy-into-location_11_0.txt
Usage notes ¶ * ` STORAGE_INTEGRATION ` or ` CREDENTIALS ` only applies if you are unloading directly into a private storage location (Amazon S3, Google Cloud Storage, or Microsoft Azure). If you are unloading into a public bucket, secure access is not required, and if you are unloading into a named external sta...
snowflake_docs/last_transaction_3_0.txt
Arguments ¶ None
snowflake_docs/as_0_0.txt
/ 1. JSON and XML Parsing 9. Array/Object Creation and Manipulation 43. Map Creation and Manipulation 51. Extraction 58. Conversion/Casting 82. Type Predicates Categories: semistructured) (Cast)
snowflake_docs/year_4_0.txt
Examples ¶ The following demonstrates the use of the functions ` YEAR ` , ` MONTH ` , ` DAY ` , ` DAYOFWEEK ` , ` DAYOFYEAR ` , and ` QUARTER ` : > > SELECT > '2013-05-08T23:39:20.123-07:00'::TIMESTAMP AS tstamp, > YEAR(tstamp) AS "YEAR", > QUARTER(tstamp) AS "QUARTER OF YE...
snowflake_docs/undrop-tag_5_0.txt
label-access-control-overview-privileges) at a minimum: Privilege | Object | Notes ---|---|--- OWNERSHIP | Tag | OWNERSHIP is a special privilege on an object that is automatically granted to the role that created the object, but can also be transferred using the [ role (or any role with the MANAGE GRANTS privilege...
snowflake_docs/null_1_0.txt
NULL (Snowflake Scripting) ¶ NULL can be used as a “no-op” (no operation) statement. Note Using NULL as a statement is uncommon. NULL is usually used as a value , rather than as a statement . As a value, NULL means “no value”. For more information, see [ the Wikipedia you might need to [ distinguish between NULL...
snowflake_docs/create-connection_0_0.txt
/ 4. Replication 11. Failover/Failback 18. Client Redirect CREATE CONNECTION
snowflake_docs/tag_references_all_columns_4_0.txt
Usage notes ¶ * Results are only returned for a role that has access to the specified object. intro.html
snowflake_docs/desc-projection-policy_2_0.txt
label-projection-policy-ddl)
snowflake_docs/floor_1_0.txt
FLOOR ¶ Returns values from ` _ input_expr _ ` rounded to the nearest equal or smaller integer, or to the nearest equal or smaller value with the specified number of places after the decimal point. See also:
snowflake_docs/create-function_29_0.txt
Access Control Requirements ¶ access-control-overview-roles) used to execute this SQL command must have the overview.html
snowflake_docs/forecast_20_0.txt
<name>!EXPLAIN_FEATURE_IMPORTANCE ¶ Returns the relative feature importance for each feature used by the model.
snowflake_docs/lag_2_0.txt
Syntax ¶ LAG ( <expr> [ , <offset> , <default> ] ) [ { IGNORE | RESPECT } NULLS ] OVER ( [ PARTITION BY <expr1> ] ORDER BY <expr2> [ { ASC | DESC } ] ) Copy
snowflake_docs/match_recognize_25_0.txt
Demonstrate Symbol Predicates in the ` MEASURES ` Clause ¶ This example shows the use of ` <symbol>.<column> ` notation with symbol predicates: > > SELECT company, price_date, price, "FINAL FIRST(LT45.price)", "FINAL > LAST(LT45.price)" > FROM stock_price_history > MATCH_RECOGNIZE ( > ...
snowflake_docs/drop-failover-group_5_0.txt
Examples ¶
snowflake_docs/st_setsrid_6_0.txt
Examples ¶ The following example creates and returns a GEOMETRY object that uses the SRID 4326: > > ALTER SESSION SET GEOMETRY_OUTPUT_FORMAT='EWKT'; > > SELECT ST_SETSRID(TO_GEOMETRY('POINT(13 51)'), 4326); > > +-----------------------------------------------+ > | ST_SETSRID(TO_GEOMETRY('POINT(13...
snowflake_docs/object_insert_3_0.txt
Arguments ¶ **Required:** ` _ object _ ` The source object into which the new key-value pair is inserted. ` _ key _ ` The new key to be inserted into the object. Must be different from all existing keys in the object, unless ` _ updateFlag _ ` is set to TRUE. ` _ value _ ` The value associated with the key. **Op...
snowflake_docs/create-row-access-policy_5_0.txt
Access control requirements ¶ access-control-overview-roles) used to execute this SQL command must have the overview.html
snowflake_docs/query_history_4_0.txt
Usage Notes ¶ * The values for the columns EXTERNAL_FUNCTION_TOTAL_INVOCATIONS, EXTERNAL_FUNCTION_TOTAL_SENT_ROWS, EXTERNAL_FUNCTION_TOTAL_RECEIVED_ROWS, EXTERNAL_FUNCTION_TOTAL_SENT_BYTES, and EXTERNAL_FUNCTION_TOTAL_RECEIVED_BYTES are affected by many factors, including: * The number of external functions i...
snowflake_docs/task_dependents_3_0.txt
Syntax ¶ TASK_DEPENDENTS( TASK_NAME => '<string>' [, RECURSIVE => <Boolean> ] ) Copy
snowflake_docs/st_dwithin_0_0.txt
/ 1. Conversion, Input, Parsing 14. Conversion, Output, Formatting 23. Constructor 32. Accessor 44. Relationship and Measurement 61. Transformation 75. Utility 77. H3 geospatial) ST_DWITHIN Categories:
snowflake_docs/use-schema_5_0.txt
Examples ¶ Use the ` myschema ` schema in the current database: > > USE myschema; > > > Copy Use the ` otherschema ` schema in the ` otherdb ` database: > > USE otherdb.otherschema; > > > Copy Was this page helpful? Yes No Inc. All Rights Reserved . On this page 1. Syntax 2. Parameters 3. U...
snowflake_docs/merge_0_0.txt
/
snowflake_docs/st_dimension_6_0.txt
Examples ¶
snowflake_docs/get_query_operator_stats_7_0.txt
Usage Notes ¶ * This function only returns statistics on queries that have completed. * You must have OPERATE or MONITOR privileges on the warehouse where you ran the query. * This function provides detailed statistics about each query operator used in the specified query. The possible query operators includ...
snowflake_docs/h3_cell_to_children_5_0.txt
Returns ¶ Returns an ARRAY of the INTEGER values of the IDs of the children of a H3 cell at the specified target resolution.
snowflake_docs/map_pick_2_0.txt
Syntax ¶ MAP_PICK( <map>, <key1> [, <key2>, ... ] ) MAP_PICK( <map>, <array> ) Copy
snowflake_docs/grant-ownership_3_0.txt
Required parameters ¶ ` _ object_name _ ` Specifies the identifier for the object on which you are transferring ownership. ` _ object_type _ ` Specifies the type of object. * ` AGGREGATION POLICY ` * ` ALERT ` * ` AUTHENTICATION POLICY ` * ` COMPUTE POOL ` * ` DATABASE ` * ` DATABASE ROLE ` ...
snowflake_docs/st_covers_0_0.txt
/ 1. Conversion, Input, Parsing 14. Conversion, Output, Formatting 23. Constructor 32. Accessor 44. Relationship and Measurement 61. Transformation 75. Utility 77. H3 geospatial) ST_COVERS Categories:
snowflake_docs/alter-failover-group_17_0.txt
label-hitrust-csf-cert) regulations. However, no such > agreement is in place for one or more of the accounts approved for > replication, regardless if they are Business Critical (or higher) accounts. This scenario is prohibited by default. **Target Account** ` _ name _ ` Specifies the identifier for the failover grou...
snowflake_docs/st_coveredby_0_0.txt
/ 1. Conversion, Input, Parsing 14. Conversion, Output, Formatting 23. Constructor 32. Accessor 44. Relationship and Measurement 61. Transformation 75. Utility 77. H3 geospatial) ST_COVEREDBY Categories:
snowflake_docs/getbit_0_0.txt
/ reference/expressions-byte-bit) GETBIT Categories:
snowflake_docs/data-types-datetime_4_0.txt
DATETIME ¶ DATETIME is an alias for TIMESTAMP_NTZ.
snowflake_docs/alter-authentication-policy_2_0.txt
Syntax ¶ ALTER AUTHENTICATION POLICY <name> RENAME TO <new_name> ALTER AUTHENTICATION POLICY [ IF EXISTS ] <name> SET [ CLIENT_TYPES = ( '<string_literal>' [ , '<string_literal>' , ... ] ) ] [ AUTHENTICATION_METHODS = ( '<string_literal>' [ , '<string_literal>' , ... ] ) ] [ SECURITY_INTE...
snowflake_docs/st_area_2_0.txt
label-data-types-geometry) object.
snowflake_docs/show-projection-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/st_azimuth_0_0.txt
/ 1. Conversion, Input, Parsing 14. Conversion, Output, Formatting 23. Constructor 32. Accessor 44. Relationship and Measurement 61. Transformation 75. Utility 77. H3 geospatial) ST_AZIMUTH Categories:
snowflake_docs/having_2_0.txt
Syntax ¶ SELECT ... FROM ... GROUP BY ... HAVING <predicate> [ ... ] Copy ` _ predicate _ ` A boolean expression.
snowflake_docs/columns_4_0.txt
> ...) ` . IDENTITY_MAXIMUM | TEXT | Not applicable for Snowflake. IDENTITY_MINIMUM | TEXT | Not applicable for Snowflake. IDENTITY_CYCLE | TEXT | Whether the value of an identity column may cycle. Snowflake only supports NO CYCLE. IDENTITY_ORDERED | TEXT | If ` YES ` , the column is an identity column and ha...
snowflake_docs/data-types-structured_21_0.txt
Using SQL Functions to Construct Structured ARRAYs and OBJECTs ¶ The following functions construct semi-structured ARRAYs: The following functions construct semi-structured OBJECTs: To construct a structured ARRAY or OBJECT, use these functions and explicitly cast the return value of the function. For example: S...
snowflake_docs/drop-projection-policy_5_0.txt
Access control requirements ¶ access-control-overview-roles) used to execute this SQL command must have the overview.html
snowflake_docs/desc-file-format_0_0.txt
/ 1. Stage 7. File Format 13. External Volume 20. Pipe 26. Snowpipe Streaming 28. Loading and Unloading loading) DESCRIBE FILE FORMAT
snowflake_docs/network_rule_references_0_0.txt
/ 1. Data Loading 4. Data Generation 6. Data Conversion 9. ML-Powered Analysis 11. Object Modeling 13. Semi-Structured Queries 15. Query Results 17. Query Profile 19. User Login 22. Queries 26. Wareho...
snowflake_docs/date-time-input-output_2_0.txt
How Snowflake Determines the Input and Output Formats to Use ¶ To determine the input and output formats to use for dates, times, and timestamps, Snowflake uses: * Session Parameters for Dates, Times, and Timestamps * File Format Options for Loading/Unloading Dates, Times, and Timestamps
snowflake_docs/st_geometryfromwkt_0_0.txt
/ 1. Conversion, Input, Parsing 14. Conversion, Output, Formatting 23. Constructor 32. Accessor 44. Relationship and Measurement 61. Transformation 75. Utility 77. H3 geospatial) ST_GEOMETRYFROMWKT Categories:
snowflake_docs/grants_to_roles_2_0.txt
Columns ¶ Column Name | Data Type | Description ---|---|--- CREATED_ON | TIMESTAMP_LTZ | Date and time (in the UTC time zone) when the privilege is granted to the role. MODIFIED_ON | TIMESTAMP_LTZ | Date and time (in the UTC time zone) when the privilege is updated. PRIVILEGE | VARCHAR | Name of the privileg...
snowflake_docs/create-managed-account_7_0.txt
label-access-control-overview-privileges) at a minimum: Privilege | Object | Notes ---|---|--- CREATE ACCOUNT | Account | Only the ACCOUNTADMIN role has this privilege by default. The privilege can be granted to additional roles as needed. For instructions on creating a custom role with a specified set of privile...
snowflake_docs/object_construct_keep_null_0_0.txt
/ 1. JSON and XML Parsing 9. Array/Object Creation and Manipulation 43. Map Creation and Manipulation 51. Extraction 58. Conversion/Casting 82. Type Predicates Categories: semistructured) (Array/Object)
snowflake_docs/get_ddl_4_0.txt
Returns ¶ Returns a string ( ` VARCHAR ` ) containing the text of the DDL statement that created the object. For UDFs and stored procedures, the output might be slightly different from the original DDL. For example, if the UDF or stored procedure contains JavaScript code, the delimiter characters around the JavaScr...
snowflake_docs/desc-session-policy_6_0.txt
label-access-control-overview-privileges) at a minimum: Privilege | Object | Notes ---|---|--- APPLY SESSION POLICY | Account | OWNERSHIP | Session policy | OWNERSHIP is a special privilege on an object that is automatically granted to the role that created the object, but can also be transferred using the [ role...
snowflake_docs/system_cancel_job_4_0.txt
Usage Notes ¶