Description

This article has been prepared to provide a step-by-step approach for getting your first Azure Synapse Analytics Link for SQL created through Synapse studio. I also consider that you have active azure subscription with an SQL Server 2022/Azure SQL database and an Azure Synapse workspace available to treat as Source and Destination for creating the link.

Configure Source Azure SQL Database

Create a linked service to your source database. It can be an Azure SQL database or SQL Server 2022; in my case, I have an Azure SQL readily available hence I am going to use that.

Create Azure Synapse Analytics Link For SQL

Create target dedicated synapse pool

Create Azure Synapse Analytics Link For SQL

If you are using SQL Server 2022 as your data source, you will have to perform the following steps but not required for Azure SQL databases.

Create the Azure Synapse Link connection

Open the integrate tab at the left side and click on the ‘+’ button to create a new link connection.

Create Azure Synapse Analytics Link For SQL

Under the ‘Source linked service,’ select ‘+New.’ You can provide your source database server and database details to create a source link point from which the data replication will be initiated followed by replication.

Create Azure Synapse Analytics Link For SQL

Once you click on create you will have the option to select the tables from the list which includes the schema name with preview option. But make sure the source database tables you are going to replicate has primary keys present in them, else you may receive an error like below.

Create Azure Synapse Analytics Link For SQL

If you are a SQL Server database user, you will know the required prerequisites for SQL Server replication, same goes to ‘SQL Link for Synapse’ feature and following it you can eventually avoid the above error.

I have selected a demo table with a few rows, and I filtered that in the search column with schema name. Don’t know why the search box has been set case sensitive, the table only appears if you key in the exact table name.

Create Azure Synapse Analytics Link For SQL

Select the synapse ‘Target pool’ which would be receiving the replicated data.

Create Azure Synapse Analytics Link For SQL

Note:

Name the Synapse Link connection and select the number of cores. These cores will be used for the movement of data from the source to the target. I have selected batch mode which will replicate every 60 mins, the time duration is customizable between 20-60 mins as per your requirements.

Create Azure Synapse Analytics Link For SQL

For each table you set in the connection, you will have the option to specify:

  1. Table and Schema names: You can change the Table and schema names in your target dedicated SQL pool. There are no conditions for these to be the same as the source table and schema names.
  2. Distribution type: You can either use round robin, hash-distributed, or replicated tables distribution type.
  3. Structure type: Organize your table as either a heap, a clustered columnstore index, or a clustered index.

Select Publish all to save the new link connection to the service

Create Azure Synapse Analytics Link For SQL

Note:

I successfully started the link, and it has completed after few mins. As we usually see, it will take a few mins to start the pool for the first time and it is a normal behaviour.

After finished I can see the table has been created in the destination synapse SQL database which I have provided, and all the data rows has been replicated as well.

Create Azure Synapse Analytics Link For SQL

Let us insert a row in source and see if this is getting replicated as well.

Create Azure Synapse Analytics Link For SQL

We can see the fifth row that we have inserted is now available in the destination database.

Create Azure Synapse Analytics Link For SQL

Summary

This is a detailed step-by-step article on how to create SQL Link for Synapse analytics. We will see how to monitor it and the replication in the background in a future article.