Querying Azure Synapse Analytics Data
Audience: Data Users
Content Summary: This page offers a tutorial on how to query data within the Azure Synapse Analytics integration.
Prerequisites:
- Azure Synapse Analytics integration configured with Immuta
- Azure Synapse Analytics tables registered as Immuta data sources
REVOKE
users' access to raw tablesGRANT
users' access to the Immuta schema
Query Data
- From Synapse Studio click on the Data menu on the left.
- Click on the Workspace tab.
- Expand databases and you should see the dedicated pool you specified when configuring the integration.
- Expand the dedicated pool and you should see the Immuta schema you created when configuring the integration.
- Select that schema.
- Select New SQL script and then Empty script.
-
Run your query (note that Synapse does not support LIMIT and the SQL is case sensitive). It should look something like this:
SELECT TOP 100 * FROM immuta_schema.backing_database_backing_table;