An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
Welcome to Microsoft Q&A
Hello @Steve McMasters I hope you are doing well,
What is actually happening is that Azure Synapse Analytics does not have a native Linked Service for the open Delta Sharing protocol. The standard Azure Databricks connector requires workspace and cluster compute permissions, which you do not have since you only possess an endpoint URL and a bearer token.
Check please the following things:
Use Synapse Spark: You must use a Serverless Apache Spark Pool in your Synapse workspace instead of a standard Copy Activity pipeline.
Install the Library: Add the open-source delta-sharing PyPI package to your Spark environment.
Run a Notebook: Create a config.share file with your URL and token, and use a PySpark notebook to read the data directly via delta_sharing.load_as_spark().
Follow this references from Microsoft Oficial Documentation this may help you to troubleshoot and resolve this issue.
References
Read data shared using Delta Sharing open sharing with bearer tokens
Copy data to and from Azure Databricks Delta Lake
If my answer helped you resolve your issue, please consider marking it as the correct answer. This helps others in the community find solutions more easily. Thanks