ODBC Destination task in ssis
ODBC Destination task is used as a data source destination task in SSIS package. ODBC supports bulk upload. So, we can upload data faster now. There are two data loading options available in this task.
- Batch – It is the most efficient insertion method. It is manged by batch size value. If batch method is not supported by the provide then it chooses Row by Row option automatically.
- Row-by-Row – This method uses SQL Execute function to insert rows one at a time.
Limitation:
we cannot create destination table in design mode as we can do with OLE DB or ADO Net.
Implementation
. I have already create a table for the destination task. Because, we cannot create destination table in design mode as we can do with OLE DB or ADO Net.
Step 1: Add ODBC destination task and connect with ODBC source
Step 2: Edit ODBC destination task and select data source, table and map columns between source and destination.
Mappings
Step 3: Execute package.
0 comments:
Post a Comment