Export Data from SQL Server to Flat File in SSIS 

STEP 1: Drag and Drop the Data Flow Task from tool box to control flow region and rename it as Export Data from SQL Server to Flat File
SSIS Export Data from SQL Server to Flat File 1
STEP 2: Double click on data flow task will open the data flow region or tab and then drag and drop the OLE DB Source and Flat file destination into data flow region.
SSIS Export Data from SQL Server to Flat File 2
STEP 3: Double click on OLE DB Source to configure the SQL Server connection strings and also to select the required data from the table.
Export Data from SQL Server to Flat File in SSIS 3
SQL Statement we used here is
STEP 4: Click on the columns tab to verify the input columns and then click ok
Export Data from SQL Server to Flat File in SSIS 4
By clicking ok we are done with our source part.
STEP 5: Let us configure the destination by double clicking on the flat file destination.
Export Data from SQL Server to Flat File in SSIS 5
We have not created any Flat File Connection Manager before So, Click on New button will open a window form to select the Flat File Format as shown in below image
Export Data from SQL Server to Flat File in SSIS 6
From the above screenshot you can observe that, We selected the Delimited option. By clicking Ok button will open the Flat File Connection Manager Editor to select and configure the text file.
By clicking on Browse button we can select the destination text file
Export Data from SQL Server to Flat File in SSIS 7
From the below you can observe that, We selected the DimGeo text file located in my local hard drive.
Export Data from SQL Server to Flat File in SSIS 8
Click on the columns tab to verify the column names
Export Data from SQL Server to Flat File in SSIS 9
Click ok to create new flat file connection to the file we want to use as destination.
STEP 6: Check the mapping tab whether all the rows are exactly mapped to the destination columns or not.
Export Data from SQL Server to Flat File in SSIS 10
Once you done with mapping click on ok button to finish the project development.
Let us run the Send Data from SQL Server to Flat File package and see
Export Data from SQL Server to Flat File in SSIS 11
Let us check the result by opening the DimGeo text file
Export Data from SQL Server to Flat File in SSIS 12


Comments