I am trying to transfer our production data to a data warehouse for reporting purposes. I've tried following the "Importing to Federations" section from the SSIS for Azure and Hybrid Data Movement, but I need to move data from my federations to the data warehouse. I've also found a good resource at SQL Server Central, but I still can't seem to bring up the federated tables in the data flow wizards. Nor can I add a Use FedDB statement in a SQL command in the ODBC (connection type needed for a SQL Azure DB) source wizard.
Extract SQL Azure Federated Database to Data Warehouse with SSIS
380 Views Asked by Brian Wheat At
1
There are 1 best solutions below
Related Questions in SQL-SERVER
- kernel module does not print packet info
- Packet drops in multicast when multiple instance of listner are running
- Timing packets on a traffic server
- How to use Espresso Idling Resource for network calls
- Dummynet does not match on flows
- Sending a notification from OS X to iOS
- Swift ios viewDidLoad or viewDidAppear
- Update player list on all clients on new connection
- Issues regarding multiplayer networking: input
- nmap does not show all open ports
Related Questions in AZURE
- kernel module does not print packet info
- Packet drops in multicast when multiple instance of listner are running
- Timing packets on a traffic server
- How to use Espresso Idling Resource for network calls
- Dummynet does not match on flows
- Sending a notification from OS X to iOS
- Swift ios viewDidLoad or viewDidAppear
- Update player list on all clients on new connection
- Issues regarding multiplayer networking: input
- nmap does not show all open ports
Related Questions in SSIS
- kernel module does not print packet info
- Packet drops in multicast when multiple instance of listner are running
- Timing packets on a traffic server
- How to use Espresso Idling Resource for network calls
- Dummynet does not match on flows
- Sending a notification from OS X to iOS
- Swift ios viewDidLoad or viewDidAppear
- Update player list on all clients on new connection
- Issues regarding multiplayer networking: input
- nmap does not show all open ports
Related Questions in DATA-WAREHOUSE
- kernel module does not print packet info
- Packet drops in multicast when multiple instance of listner are running
- Timing packets on a traffic server
- How to use Espresso Idling Resource for network calls
- Dummynet does not match on flows
- Sending a notification from OS X to iOS
- Swift ios viewDidLoad or viewDidAppear
- Update player list on all clients on new connection
- Issues regarding multiplayer networking: input
- nmap does not show all open ports
Related Questions in AZURE-SYNAPSE
- kernel module does not print packet info
- Packet drops in multicast when multiple instance of listner are running
- Timing packets on a traffic server
- How to use Espresso Idling Resource for network calls
- Dummynet does not match on flows
- Sending a notification from OS X to iOS
- Swift ios viewDidLoad or viewDidAppear
- Update player list on all clients on new connection
- Issues regarding multiplayer networking: input
- nmap does not show all open ports
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I built out a prototype package, based on my assumption of a Vertical sharding (same schema spread across multiple instances)
What you'll want to do is create an ADO.NET Connection Manager and as the Provider, select ".Net Providers\Odbc Data Provider."
The connection string will look something like the below. As the first link you provided indicates, be certain that you have authorized the IP and that you specify the
Database
Control flow
I have a Foreach Loop Container set up so that I can enumerate through all the instances in my federation. Each pass through the loop generates the connection string to the current instance. I assign that into a Variable,
SourceConnectionString
of type String.I then have an Expression set on ADO.NET Connection Manager to set the
ConnectionString
property to@[User::SourceConnectionString]
. This will ensure that our connection actually changes during enumeration.Data Flow
A Data Flows derives its performance by keeping strict tabs on the metadata surrounding the source and destination. You will want to create a data flow per table you need to contend with. There are strategies for running multiple data flows in parallel which I am not addressing here. I'm sure Andy Leonard covers it in his Stairway to Integration Services series that you've already found.
I've structured mine much as you see in the linked SSC article
You have for source components basically either OLE DB or an ADO.NET component. Since we're working with Azure, we'll need the "ADO NET Source" component.
Lookup Components can use an OLE DB Connection Manager or a Cache Connection Manager. Since you are pushing to an on premises (misspelled in my screenshot) instance, you can use an OLE DB Connection Manager to handle your lookups.
Really, except for the source and the enumeration through the federation, there's very little difference between this answer and what's in the article.