How about the route of data flow when I execute data copy by Import and Export Wizard ?

Sung-uk Park 20 Reputation points
2023-09-13T09:51:34.6033333+00:00

If I execute data copy (SQL Server to SQL Server) by wizard of my local SSMS, does data copied via my local pc or directly server to server ?

Is there any Official Document from Microsoft about this situation ?

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
13,670 questions
{count} votes

Accepted answer
  1. RahulRandive 9,506 Reputation points
    2023-09-14T03:16:40.38+00:00

    Hi @Sung-uk Park

    When importing or exporting data in Azure SQL Database, the data is not copied via your local PC. Instead, the import/export operation is performed directly from the server to server.

    The exact process for importing and exporting data can vary depending on the specific method being used, such as the Azure portal, SQLPackage or command-line.

    However, in general, the data is first extracted from the source database, and transferred to the destination database.

    Example if you use SQLPackage.exe method to import the data, then it will be store in the local PC first.

    Here is a syntax-

    User's image

    Detailed blog found here- https://techcommunity.microsoft.com/t5/azure-database-support-blog/using-sqlpackage-to-import-or-export-sql-server-and-azure-sql-db/ba-p/368861

    Let us know if you need any additional information.

    Thank you!

    0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Erland Sommarskog 110.3K Reputation points
    2023-09-13T21:51:38.9166667+00:00

    Data will travel through you local machine. It's not server to server.

    0 comments No comments

  2. ZoeHui-MSFT 36,116 Reputation points
    2023-09-14T02:05:52.0433333+00:00

    Hi @Sung-uk Park,

    SQL Server Import and Export Wizard is a simple way to copy data from a source to a destination.

    The wizard uses SQL Server Integration Services (SSIS) to copy data. SSIS is a tool for extracting, transforming, and loading data (ETL). The pages of the wizard use some of the language of SSIS.

    Check it out here: SQL Server Import and Export Wizard

    Regards,

    Zoe Hui


    If the answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.