I am trying to design an SSIS package which copy about 50+ tables from an ODBC DataSource (QuickBooks DB) to an SQL DB. Should I create 50 Data Flow Task to do this ? What is the best way to do this ? Putting DFT inside a Loop, and reading the tables ? Or 50+ Data Flow Tasks ???
Copying multiple tables using SSIS Package
6.3k Views Asked by Yesudass Moses At
1
There are 1 best solutions below
Related Questions in SSIS
- Data streams in case of Merge
- SSIS Package Component Intermittently Failing
- How to run an SSIS package having excel source on a server where excel is not installed using SQL Server Agent Job
- SSIS exit code error with batch file
- excel datasource returning nulls with sql command
- String to DATETIME with TimeZone
- Error executing SSIS Package
- SSIS Stops at a Particular Record Count
- How to know expected completion time of SQL Server SSIS job?
- Accessing parent parameters from child package SSIS 2012
- Is there a way to export huge amount of data (more than a million rows) from SQL Server to csv?
- ssis - No value given for one or more required parameters
- Split CSV file based on first column value changes and load into destination table in SSIS?
- Automated file import with SSIS package
- SSIS ETL parallel extraction from a AS400 file
Related Questions in ODBC
- microsoft odbc driver manager data source name not found and no default driver specified
- Edit fields in local table linked to PassThrough Query
- Using an ODBC connection in Access get retrieve data from DB2
- IIS7 SQL ODBC and Server 2008 R2 (converted site from IIS6 2003 to 2008 R2 IIS7)
- Microsoft Access connection to MYOB ODBC developer mode
- RODBC on an Oracle Database and special characters
- How to configure DNS for microsoft odbc driver for oracle (in 64 bit arch.)
- How to refresh linked tables if Access disconnects from MySQL database server?
- Cannot insert data over Linked Server into Redshift
- New Datastax driver for Tableau is not working
- C++ [ODBC]-MSSQLExpress 2008 SQLSTATE: 28000 || 42000
- ODBC with FreeTDS PHP Not working via HTTP
- "Unable to find the requested .Net Framework Data Provider", MySQL. tried using odbc too
- How to extract and store ODBC with driver pairs
- c# Tableadapter fails to update through odbc
Related Questions in QUICKBOOKS
- OAuth integration with QuickBooks using Scribe
- How to change the base URL in QuickBook PHP API?
- Quickbooks IPP v3 Invalid Line TaxCode in the request
- Retrieving default currency for a company file using QBXML for QBD
- No matching contract between WCF Service and QuickBooks Web Connector
- QuickBooks php DevKit database query only returning 100 rows
- Manipulating RSSBus for Quickbooks ADO.net ConnectionString
- NameError: global name 'qbObject' is not defined
- Setting up Payment for QuickBooks Online using PHP DevKit
- How to import payroll data in Quick books?
- Fetch QuickBooks Cash flow report using C#
- How to create Journal entry in QuickBooks Online
- How to add phone number in quickbook vendor?
- QuickBooks Desktop Integration required in php
- GeneralDetailReportQuery key field
Related Questions in DATAFLOWTASK
- "The selected data source is on remote computer" error when creating an SSIS job
- Getting Avalilable lookup columns in Loookup transformation into Lookup not match output path in ssis?
- How to get Avalilable lookup columns in Loookup transformation into Lookup not match output path in ssis?
- Conditional Split in SSIS - SQL
- How to call a web service with multiple input (in a Script Component) in SSIS?
- Copying multiple tables using SSIS Package
- Can't open excel file with SSIS unless it is manually saved
- SSIS SQL Task with parameters not creating temp table
- SSIS XML Source Error Output resets to fail component after setting to redirect row
- Simple Data Flow not extracting all records in table
- Need to provide dynamic file from azure blob to the any data activitiy in azure data factory, please share some link
- Pagination in ADF Data flow
- I want to define a variable globally but it should be initialized locally and the data should be the same for other classes
- SSIS Package Hangs when trying to insert million of rows from a OLE DB Source
- Redirect error rows only when conversion fails
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 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?
You can create 50 Data Flow Tasks, but you don't have to.
It is possible to have multiple independent sources-destinations in the same DFT. This will be not as flexible, because you can run single DFT separately from the package (while debugging), but you cannot run a piece of DFT without modifying it (as far as I know).
Depending on which option you choose, I see a couple of ways to save yourself from mundane work with 50+ tables:
a) Let SQL Server Import and Export Wizard do the boring work for you. The best about this tool is that it can create a .dtsx package.
So, with the wizard, you can:
b) Manually edit the package code (some BIML knowledge might be needed):