Daniel Calbimonte

Bcp and linked servers to Azure

July 13, 2015 by

Introduction

Sometimes, we need to use the command line to copy tables using the command line. In this new chapter, we will use the BCP command to copy tables from a local machine to the SQL Server in Azure. The BCP is a very fast bulk copy tools used for this purpose.

We will also learn how to create a Linked Server in our local machine to Azure. The Linked Servers are very powerful features of SQL Server to connect SQL Server to different Data Sources like Excel, MS Access, Oracle, MySQL, and several databases. In this example, we will connect to SQL Azure.

Requirements

  • An Azure subscription.
  • A VM Machine in Azure with SQL Server already installed (check my article about Azure VMs).
  • The AdventureWorks database installed in the source and destination columns (you can create your own tables if you prefer).
  • A local machine with Windows installed.
  • A SQL Server Management Studio (SSMS) connected to Azure (check our article related here).

Getting started

  1. In order to start, in the local machine open the command prompt.


    Figure 1. The cmd

  2. In the command prompt, run the following bcp command:

    bcp adventureworks2014.humanresources.department out c:\s
    cripts\department.dat -S localhost -T -n –q

  3. The command copies the data of the table HumanResources.Department of the Adventureworks2014 database to the file department.dat. The –S parameter is the Server name, the –T means to use a Trusted connection (Windows authentication). The –n parameter is used to perform the bulk copy operation using the native datatypes. This option is very important to increase the copy with a good performance. The –q parameter means to Set Quoter identifiers which means to use a qualified name (database name, owner and table name).
  4. If Everything is fine, the command will display a message similar to this one:


    Figure 2. Copying rows to the dat file

  5. Now we need an empty table in the Azure machine. In the Azure machine, go to the SSMS, AdventureWorks database, select the HumanResources.Department table and select the option

    Script Table as ➜ Create To ➜ New Query Window:


    Figure 3. Generating T-SQL code to create a new table

    1. This option will generate the T-SQL code of the table.
    2. Now modify the code like this (or copy this code to create a new table):

      The T-SQL code used creates an empty table named department2 which will be used to upload data from the local machine.

    3. Now run the T-SQL code of the step 8 to create the table.


      Figure 4. The table created

    4. Finally, run the following command to import data in Azure:

      bcp adventureworks2014.humanresources.department2 in c:\ cripts\department.dat -n -U daniel -S tcp:olapsqldan.cloudapp.net -P Myp@wd1

      We use the in to import data and we specify the .dat file created in the step 2. The –n is parameter was explanined in step 3. The –U parameter specifies the SQL Azure User Name. The –P parameter is used to set the SQL Azure password. Finally, the –S specifies the Azure Server Name which can be displayed in the Azure Portal.

    5. The message displayed by the command will be similar to this one:

      Figure 5. Copying rows to Azure

    6. If everything is OK, you will be able to see data in your table in your Azure machine.


      Figure 6. The data copied to Azure.

    As you can see, copying data from your local machine to Azure is a straightforward process. Now let’s just to another topic. The Linked Servers.

    Linked Server to Azure

    Another method to connect and copy data from your local machine to Azure is using Linked Servers.

    The Linked Servers in SQL Server let you connect your SQL Database with other Data Bases like Access, Oracle, MySQL, etc.

    In this new example, we are going to connect and create a Linked Server to a SQL Azure machine.

    1. In order to start, connect and open the SSMS.


      Figure 7. The SSMS

    2. Go to Server Objects ➜ Linked Servers and right click on it and select the New Linked Server option.


      Figure 8. The linked Server

    3. In the general page, in the Linked server text box, write the DNS name of the SQL Azure. In the Server type, select SQL Server.


      Figure 9. The SQL Azure created as a Linked Server.

    4. Now we need to specify the Security credentials. Go to the Security page and in the Local Login, select a SQL Server local user. In Remote user specify the user name used to login to SQL Azure. Finally, in Remote Password specify the password of the remote user.

      Figure 10. Linked Server Security Settings.

    5. If everything is fine, you will be able to see the Databases and tables that belong to the SQL Azure in the Catalogs folder.


      Figure 11. The Linked Server just created.

    6. Alternately, you can use the T-SQL commands to create the Linked Server:

      The system Procedure addlinkedserver is used to add the server. The Server name is the name of the Azure SQL Server. The product is SQL Server.

    7. The next part is the security.

      The system procedure sp_addlinkedsrvlogin is used to add logins to connect to Azure. The @rmtsrvname contains the name of the remote Server. In this case, the Azure machine. The @useself parameter is to use the current account. The @locallogin parameter specifies the local login and @rmtuser and @rmtpasswords are used to specify the Azure user name and azure password respectably.

    8. In order to test the Linked Server, you can query the Linked Server using the OPENQUERY command:

    9. You will be able to see the data in your local machine from your SQL Azure table.

      Figure 12. The Linked Server query results

    10. You can simple use the full name instead of using the OPENQUERY:

      Now, you can insert, delete data using the full name.

    Conclusion

    In this chapter, we learned two things:

    • First, we learned how to copy data using the command line and specifically the BCP command from the local SQL Server to Azure.
    • Secondly, we learned how to connect our local database to Azure using the Linked Servers.
    Daniel Calbimonte
    Latest posts by Daniel Calbimonte (see all)
SQL Azure, SQL commands

About Daniel Calbimonte

Daniel Calbimonte is a Microsoft Most Valuable Professional, Microsoft Certified Trainer and Microsoft Certified IT Professional for SQL Server. He is an accomplished SSIS author, teacher at IT Academies and has over 13 years of experience working with different databases. He has worked for the government, oil companies, web sites, magazines and universities around the world. Daniel also regularly speaks at SQL Servers conferences and blogs. He writes SQL Server training materials for certification exams. He also helps with translating SQLShack articles to Spanish View all posts by Daniel Calbimonte

168 Views