Snowflake URI format
URI definition for Snowflake follows this standard:
Identifier fragments:
- Namespace:
snowflake://{organization name}-{account name}- Scheme =
snowflake - Authority =
{organization name}-{account name}
- Scheme =
- Unique name:
{database}.{schema}.{table}
Asset URI format:
snowflake://{organization name}-{account name}/{database}.{schema}.{table}
Schema URI format:
snowflake://{organization name}-{account name}/{database}.{schema}
Alternative identifier for Snowflake:
- Snowflake was initially making user identify their account using account identifier looking like that
xyz12345.eu-west-3.aws. Because of that you are allowed to define your Snowflake authority using this account identifier in Sifflet as well. - It would make the URI look like this format:
snowflake://{account locator}/{database}.{schema}.{table}
Parameters limitations:
organizationname must start with a lowercase or uppercase letter and include only lowercase and uppercase letters and numbers (regex:[a-zA-Z][a-zA-Z0-9]+)accountname must start with a lowercase or uppercase letter and include only lowercase and uppercase letters, numbers, underscores and dashes (regex:[a-zA-Z][a-zA-Z0-9_-]+)accountname must start with a lowercase or uppercase letter and include only lowercase and uppercase letters, numbers, dots and dashes (regex:[a-zA-Z][a-zA-Z0-9.-]+)database,schemaandtablecan have two format, following Snowflake naming standards: quoted format and unquoted format- unquoted identifier must include only lowercase and uppercase letters, numbers, underscores and dollars
- quoted identifier needs to be quoted using double quotes
“and must include only characters included in the unicode range U+0001 to U+FFFF. If a double quote character is present in the name, it needs to be escaped with another double quote character in front of it.
Asset examples:
snowflake://xyz12345.eu-central-1/DATABASE.SCHEMA.TABLEsnowflake://sifflet-aws-us-east-2/"data.base my"."sCHE.MA my"."TA.BLE my"snowflake://sifflet-aws-us-east-2/"♞"."♛"."♔"
Schema examples:
snowflake://xyz12345.eu-central-1/DATABASE.SCHEMAsnowflake://sifflet-aws-us-east-2/"data.base my"."sCHE.MA my"snowflake://sifflet-aws-us-east-2/"♞"."♛"
Updated 11 days ago
