Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
259 views
in Technique[技术] by (71.8m points)

Copying & Consolidating Data from on-prem SQL server to Azure blob

I'm starting to migrate some on-prem operational data to Azure blob using azure data factory. I have a couple of complicated (well I think they are) pieces to the puzzle.

I have 8 databases, each of which are identical (our operational system works across 8 different sites and each site has it's own database) but contain data pertaining to that site only.

I need to consolidate data from these sites together. For example, a table called People, when I report on People I need ONE table containing all people from every site. I achieve this in our current on-prem data warehouse using UNION ALL SQL queries, but with over 60 queries, these become a pain in the rear to maintain as they change each year due to how our business operates.

My mind is boggling with the best/simplest way to achieve this and would appreciate a point in the right direction.

question from:https://stackoverflow.com/questions/65892513/copying-consolidating-data-from-on-prem-sql-server-to-azure-blob

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As @HimanshuSinha-msft you can paramterized the linked serveice.

  1. We can add server and db paramter to the linked service.
    enter image description here

  2. In the pipeline, we can define an array type parameter servers and type in [{"server":"<server-name1>","db":"<dbname1>"},{"server":"server-name2","db":"<dbname2>"}, ...]. This is a data structure I defined. enter image description here

  3. Then we can traverse this array parameter in the Foreach activity via @pipeline().parameters.servers. enter image description here

  4. Inside the Foreach activity, we need to add two parameters to the source data set of the Copy acitivity. enter image description here

  5. Then we can ddd dynamic content to the source data set. enter image description here

Through these steps, we can use one Copy activity to copy data from multiple different SQL Servers to one Azure SQL. Because we dynamically passed in the value of the connection parameter.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...