SSIS - How To Use Unpivot In SSIS
Scenario: We have a source table that has columns SaleQ1,SaleQ2,SaleQ3,SaleQ3 for sale amount. We want to Unpivot and produce output in given format.Source table definition with sample dataCREATE TABLE...
View ArticleSSIS - Load All Records From Source To Destination OR Load No Record [ SSIS...
Scenario: We have to load data from source table to destination table. We want to load all records or no record. That means if any error happen then we want to rollback the transaction.Solution :...
View ArticleSSIS - Read Top X Rows From Flat File / Excel File OR Range OF Rows
Scenario: We have Flat File/Excel File as our source and we have to load only top 10 rows into out destination table Or the requirement can be load the records from Row number 5 to 10.Solution : Here...
View ArticleSSIS - Read Multiple Sheets from Excel File and Load into Table
Scenario: We have our source Excel file that has sale history. Each sheet will has data for a year. We can get data for any number or years. In this example we have data for three years. We need to...
View ArticleSSIS - How to Get Error Column Name In SSIS
Scenario: We are loading data from source table to destination table. The data has to be converted to destination data types before we insert the data into Destination table. We are using Data...
View ArticleSSIS - Create Log File for SSIS Package Execution With DateTime [ SSIS Logging ]
Scenario: We have created a SSIS Package. Now we want to enable Logging for our Package and want to create a log file ( Text File Logging) each time the package executes. The Log file name should look...
View ArticleSSRS - How To Display All Records On One Page in SSRS
Scenario : We have created our SSRS Report that consist of multiple pages. Our users do not want to click on next page to see the data instead of that they want to display all the records on one...
View ArticleSSRS- HOW TO SERIES ( SSRS TUTORIAL )
Few months back, I started How to series of SSIS in which I tried to use different Tasks/Transformation of SSIS with different real time scenarios. SSRS HOW TO SERIES is going to be a tutorial in which...
View ArticleSSRS - How to Create Shared Data Source
Shared Data Source :Shared Data Source is data source connection that can be used by multiple reports. If our reports are pointing to the same database we should use Shared data Source that is...
View ArticleSSIS - How to Compress And Archive File In SSIS [ Execute Process Task ]
Scenario: We receive different source files on daily basis. After loading them to our destination tables we want to compress them and Archive them to Archive folder in case we need to use them later....
View ArticleSSIS - Create Excel File Dynamically In SSIS
Scenario: We want to create a SSIS Package to load data from Database but the number of columns can change any time. We do not want to open our SSIS Package and do remapping for our Excel destination....
View ArticleSSIS - Archive Files And Add Timestamp To Each File Name [How To Use File...
Scenario: There are different types of files we have in our Source folder. We want to archive them to Archive folder. While archiving them we want to add time-stamp with each file name.Solution :We...
View ArticleTSQL - Alter Table Add Multiple Columns SQL Server
Sometime we have to add multiple columns to the already existing table. Instead of adding one column at a time we can add multiple columns in one statement.Here is example how to Add Multiple Columns...
View ArticleSSIS -How to Import Files (Text, Pdf, Excel, Image etc) To Sql Server Table [...
Scenario : We have different types of files such as Text, Pdf, Image, Excel etc and we want to load them into Sql Server Table.Solution:First of all, let's create a table that can store these files....
View ArticleSSIS -Export Files from SQL Table To Folder [ How To Use Export Column...
Scenario:We have saved different type of files such as Excel, Image, Text into SQL Server Table. We want to export them to folder. The folder path with file name is saved in FileName column.Solution:We...
View ArticleSSIS - How To Load Multiple Files ( .txt or .csv ) To a Table With File Names
Scenario: We receive sale files for different regions ( Asia, Europe, North America) in our Source Folder. We need to load these files to RegionSale Table with File Name and Folder Path. In this...
View ArticleSSIS -How To Get Most Recent File from Directory And Load To a Table [ SSIS...
Scenario:We get the files in our Source Folder all day long. Each file is appended copy of previous file. We want to create a SSIS Package that will load only the most recent file to our table.Solution...
View ArticleSSIS - How To Watch Value Of Variables During Debugging In SSIS Package
Scenario: We have created a SSIS Package that takes the files from Source Folder and move them to Archive Folder. While it move them, It also add Time Stamp to file. Here is the blog post for the...
View ArticleSSIS - Backwards Compatibility For SSIS Packages
Sometime we have different versions of SQL Server installed on our different machines such as Local Machines have SQL Server 2008. Development, UAT and Production has SQL Server 2005 Or our local...
View ArticleSSIS - How To Remove Duplicate Record/s and Keep Single Record in Data Flow...
Scenario:We are loading data from Flat File that can has duplicate records in it. We want to remove the duplicate records and keep only single record for those duplicate records.Solution :In SSIS, Sort...
View Article