Synapse URI format
URI definition for Azure Synapse follows this standard:
Identifier fragments:
- Namespace:
sqlserver://{host}:{port};database={database}
- Scheme =
sqlserver
- Authority =
{host}:{port};database={database}
- Scheme =
- Unique name:
{schema}.{table}
URI format:
sqlserver://{host}:{port};database={database}/{schema}.{table}
Parameters limitations:
host
identifier must start with a lowercase letter and include only lowercase letters, numbers, dash and dot (regex:[a-z][a-z0-9-.]+
)port
identifier must include only numbersdatabase
,schema
andtable
can have two format, following Azure Synapse naming standards: quoted and unquoted- unquoted identifier must start with a character belonging to the unicode category L (letter),
_
,@
or#
. The other characters must belong to the unicode category L (letter), unicode category N (number), or be_
,@,
#
or$
. - quoted identifier needs to be wrapped using brackets
[
and]
and must include only characters included in the unicode range U+0001 to U+FFFF. If a right bracket character]
is included inside the name it needs to be doubled. (Ex:my]]name
is a valid name if put inside brackets andmy]name
is not valid)
- unquoted identifier must start with a character belonging to the unicode category L (letter),
Examples:
sqlserver://sifflet-dev-synapse.cfbuquha2ngc.eu-west-1.rds.amazonaws.com:5432;database=test_database/test_schema.test_table
sqlserver://testing-mssql.cfbu.us-west-1.rds:8080;database=prod_database/[MY-SCHEMA].테스트_데이터1
Updated 5 months ago