Copy data from a SQL Server database to Azure Blob storage

APPLIES TO: Azure Data Factory Azure Synapse Analytics

Tip

Try out Data Factory in Microsoft Fabric, an all-in-one analytics solution for enterprises. Microsoft Fabric covers everything from data movement to data science, real-time analytics, business intelligence, and reporting. Learn how to start a new trial for free!

In this tutorial, you use the Azure Data Factory user interface (UI) to create a data factory pipeline that copies data from a SQL Server database to Azure Blob storage. You create and use a self-hosted integration runtime, which moves data between on-premises and cloud data stores.

Note

This article doesn't provide a detailed introduction to Data Factory. For more information, see Introduction to Data Factory.

In this tutorial, you perform the following steps:

  • Create a data factory.
  • Create a self-hosted integration runtime.
  • Create SQL Server and Azure Storage linked services.
  • Create SQL Server and Azure Blob datasets.
  • Create a pipeline with a copy activity to move the data.
  • Start a pipeline run.
  • Monitor the pipeline run.

Prerequisites

Azure subscription

Before you begin, if you don't already have an Azure subscription, create a free account.

Azure roles

To create data factory instances, the user account you use to sign in to Azure must be assigned a Contributor or Owner role or must be an administrator of the Azure subscription.

To view the permissions you have in the subscription, go to the Azure portal. In the upper-right corner, select your user name, and then select Permissions. If you have access to multiple subscriptions, select the appropriate subscription. For sample instructions on how to add a user to a role, see Assign Azure roles using the Azure portal.

SQL Server 2014, 2016, and 2017

In this tutorial, you use a SQL Server database as a source data store. The pipeline in the data factory you create in this tutorial copies data from this SQL Server database (source) to Blob storage (sink). You then create a table named emp in your SQL Server database and insert a couple of sample entries into the table.

  1. Start SQL Server Management Studio. If it's not already installed on your machine, go to Download SQL Server Management Studio.

  2. Connect to your SQL Server instance by using your credentials.

  3. Create a sample database. In the tree view, right-click Databases, and then select New Database.

  4. In the New Database window, enter a name for the database, and then select OK.

  5. To create the emp table and insert some sample data into it, run the following query script against the database. In the tree view, right-click the database that you created, and then select New Query.

     CREATE TABLE dbo.emp
     (
         ID int IDENTITY(1,1) NOT NULL,
         FirstName varchar(50),
         LastName varchar(50)
     )
     GO
    
     INSERT INTO emp (FirstName, LastName) VALUES ('John', 'Doe')
     INSERT INTO emp (FirstName, LastName) VALUES ('Jane', 'Doe')
     GO
    

Azure storage account

In this tutorial, you use a general-purpose Azure storage account (specifically, Blob storage) as a destination/sink data store. If you don't have a general-purpose Azure storage account, see Create a storage account. The pipeline in the data factory that you create in this tutorial copies data from the SQL Server database (source) to Blob storage (sink).

Get the storage account name and account key

You use the name and key of your storage account in this tutorial. To get the name and key of your storage account, take the following steps:

  1. Sign in to the Azure portal with your Azure user name and password.

  2. In the left pane, select All services. Filter by using the Storage keyword, and then select Storage accounts.

    Storage account search

  3. In the list of storage accounts, filter for your storage account if needed. Then select your storage account.

  4. In the Storage account window, select Access keys.

  5. In the Storage account name and key1 boxes, copy the values, and then paste them into Notepad or another editor for later use in the tutorial.

Create the adftutorial container

In this section, you create a blob container named adftutorial in your Blob storage.

  1. In the Storage account window, go to Overview, and then select Containers.

    Select Blobs option

  2. In the Containers window, select + Container to create a new one.

  3. In the New container window, under Name, enter adftutorial. Then select Create.

  4. In the list of containers, select adftutorial you just created.

  5. Keep the container window for adftutorial open. You use it to verify the output at the end of the tutorial. Data Factory automatically creates the output folder in this container, so you don't need to create one.

Create a data factory

In this step, you create a data factory and start the Data Factory UI to create a pipeline in the data factory.

  1. Open the Microsoft Edge or Google Chrome web browser. Currently, Data Factory UI is supported only in Microsoft Edge and Google Chrome web browsers.

  2. On the left menu, select Create a resource > Integration > Data Factory:

    Data Factory selection in the "New" pane

  3. On the New data factory page, under Name, enter ADFTutorialDataFactory.

    The name of the data factory must be globally unique. If you see the following error message for the name field, change the name of the data factory (for example, yournameADFTutorialDataFactory). For naming rules for Data Factory artifacts, see Data Factory naming rules.

    New data factory error message for duplicate name.

  4. Select the Azure subscription in which you want to create the data factory.

  5. For Resource Group, take one of the following steps:

  6. Under Version, select V2.

  7. Under Location, select the location for the data factory. Only locations that are supported are displayed in the drop-down list. The data stores (for example, Storage and SQL Database) and computes (for example, Azure HDInsight) used by Data Factory can be in other regions.

  8. Select Create.

  9. After the creation is finished, you see the Data Factory page as shown in the image:

    Home page for the Azure Data Factory, with the Open Azure Data Factory Studio tile.

  10. Select Open on the Open Azure Data Factory Studio tile to launch the Data Factory UI in a separate tab.

Create a pipeline

  1. On the Azure Data Factory home page, select Orchestrate. A pipeline is automatically created for you. You see the pipeline in the tree view, and its editor opens.

    Screenshot that shows the data factory home page with the Orchestrate button highlighted.

  2. In the General panel under Properties, specify SQLServerToBlobPipeline for Name. Then collapse the panel by clicking the Properties icon in the top-right corner.

  3. In the Activities tool box, expand Move & Transform. Drag and drop the Copy activity to the pipeline design surface. Set the name of the activity to CopySqlServerToAzureBlobActivity.

  4. In the Properties window, go to the Source tab, and select + New.

  5. In the New Dataset dialog box, search for SQL Server. Select SQL Server, and then select Continue. New SqlServer dataset

  6. In the Set Properties dialog box, under Name, enter SqlServerDataset. Under Linked service, select + New. You create a connection to the source data store (SQL Server database) in this step.

  7. In the New Linked Service dialog box, add Name as SqlServerLinkedService. Under Connect via integration runtime, select +New. In this section, you create a self-hosted integration runtime and associate it with an on-premises machine with the SQL Server database. The self-hosted integration runtime is the component that copies data from the SQL Server database on your machine to Blob storage.

  8. In the Integration Runtime Setup dialog box, select Self-Hosted, and then select Continue.

  9. Under name, enter TutorialIntegrationRuntime. Then select Create.

  10. For Settings, select Click here to launch the express setup for this computer. This action installs the integration runtime on your machine and registers it with Data Factory. Alternatively, you can use the manual setup option to download the installation file, run it, and use the key to register the integration runtime. Integration runtime setup

  11. In the Integration Runtime (Self-hosted) Express Setup window, select Close when the process is finished.

    Integration runtime (self-hosted) express setup

  12. In the New linked service (SQL Server) dialog box, confirm that TutorialIntegrationRuntime is selected under Connect via integration runtime. Then, take the following steps:

    a. Under Name, enter SqlServerLinkedService.

    b. Under Server name, enter the name of your SQL Server instance.

    c. Under Database name, enter the name of the database with the emp table.

    d. Under Authentication type, select the appropriate authentication type that Data Factory should use to connect to your SQL Server database.

    e. Under User name and Password, enter the user name and password. Use mydomain\myuser as user name if needed.

    f. Select Test connection. This step is to confirm that Data Factory can connect to your SQL Server database by using the self-hosted integration runtime you created.

    g. To save the linked service, select Create.

    New linked service (SQL Server)

  13. After the linked service is created, you're back to the Set properties page for the SqlServerDataset. Take the following steps:

    a. In Linked service, confirm that you see SqlServerLinkedService.

    b. Under Table name, select [dbo].[emp].

    c. Select OK.

  14. Go to the tab with SQLServerToBlobPipeline, or select SQLServerToBlobPipeline in the tree view.

  15. Go to the Sink tab at the bottom of the Properties window, and select + New.

  16. In the New Dataset dialog box, select Azure Blob Storage. Then select Continue.

  17. In Select Format dialog box, choose the format type of your data. Then select Continue.

    Data format selection

  18. In the Set Properties dialog box, enter AzureBlobDataset for Name. Next to the Linked service text box, select + New.

  19. In the New Linked Service (Azure Blob Storage) dialog box, enter AzureStorageLinkedService as name, select your storage account from the Storage account name list. Test connection, and then select Create to deploy the linked service.

  20. After the linked service is created, you're back to the Set properties page. Select OK.

  21. Open the sink dataset. On the Connection tab, take the following steps:

    a. In Linked service, confirm that AzureStorageLinkedService is selected.

    b. In File path, enter adftutorial/fromonprem for the Container/ Directory part. If the output folder doesn't exist in the adftutorial container, Data Factory automatically creates the output folder.

    c. For the File part, select Add dynamic content. dynamic expression for resolving file name

    d. Add @CONCAT(pipeline().RunId, '.txt'), and then select Finish. This action will rename the file with PipelineRunID.txt.

  22. Go to the tab with the pipeline opened, or select the pipeline in the tree view. In Sink Dataset, confirm that AzureBlobDataset is selected.

  23. To validate the pipeline settings, select Validate on the toolbar for the pipeline. To close the Pipe validation output, select the >> icon. validate pipeline

  24. To publish entities you created to Data Factory, select Publish all.

  25. Wait until you see the Publishing completed pop-up. To check the status of publishing, select the Show notifications link on the top of the window. To close the notification window, select Close.

Trigger a pipeline run

Select Add Trigger on the toolbar for the pipeline, and then select Trigger Now.

Monitor the pipeline run

  1. Go to the Monitor tab. You see the pipeline that you manually triggered in the previous step.

  2. To view activity runs associated with the pipeline run, select the SQLServerToBlobPipeline link under PIPELINE NAME. Monitor pipeline runs

  3. On the Activity runs page, select the Details (eyeglasses image) link to see details about the copy operation. To go back to the Pipeline Runs view, select All pipeline runs at the top.

Verify the output

The pipeline automatically creates the output folder named fromonprem in the adftutorial blob container. Confirm that you see the [pipeline().RunId].txt file in the output folder.

The pipeline in this sample copies data from one location to another in Blob storage. You learned how to:

  • Create a data factory.
  • Create a self-hosted integration runtime.
  • Create SQL Server and Storage linked services.
  • Create SQL Server and Blob storage datasets.
  • Create a pipeline with a copy activity to move the data.
  • Start a pipeline run.
  • Monitor the pipeline run.

For a list of data stores that are supported by Data Factory, see Supported data stores.

To learn how to copy data in bulk from a source to a destination, advance to the following tutorial: