An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
To safely redeploy your Azure Synapse workspace without affecting your dedicated SQL pools, follow these steps:
Ensure you have backups of critical components (like SQL scripts, pipeline configurations, notebooks, etc.) and configurations from your current Synapse workspace.
Take snapshots of your dedicated SQL Pools if needed.
Yu can use ARM templates to capture the configuration of your Synapse workspace. You can export the ARM template of your existing Synapse workspace via the Azure Portal.
Navigate to your Synapse workspace > Automation script > Export the template.
Modify the template to exclude resources (like SQL pools) that should not be redeployed.
In the ARM template, identify the resources related to the dedicated SQL pools and ensure they are not included in the deployment steps. This way, the SQL pools remain unaffected by the redeployment.
Focus only on redeploying the Synapse components (pipelines, workspaces, ...).
Use the modified ARM template to redeploy your Synapse workspace and deploy the template either via Azure Portal, Azure CLI, or PowerShell.
Once the workspace is redeployed, verify that all your dedicated SQL pools remain intact and operational.
Check that your SQL pools, data, and existing configurations are not affected by the redeployment.