Skip to main content

Posts

Showing posts with the label Data With Gaurav

How to remove special characters in the Data(using Script component Task and Regex)

Start with the Below screen shot ( Before Script Task) and you will come to know about the senario. Note : The Script Component also works for the special characters within the Data as well . for ex "A$hish" Hover over the below Regex. it will show > Show potential fixes > in that Select System.Text.RegularExpressions. The Below will disappear.  Use the Below Script.  public override void Input0_ProcessInputRow(Input0Buffer Row) { Row.CustomerID = RemoveSpecialCharacters(Row.CustomerID); Row.NameStyle = RemoveSpecialCharacters(Row.NameStyle); Row.Title = RemoveSpecialCharacters(Row.Title); Row.FirstName = RemoveSpecialCharacters(Row.FirstName); Row.LastName = RemoveSpecialCharacters(Row.LastName); Row.CompanyName = RemoveSpecialCharacters(Row.CompanyName); Row.SalesPerson = RemoveSpecialCharacters(Row.SalesPerson); Row.EmailAddress = RemoveSpecialCharacters(Row.EmailAddress); Row.Phone = RemoveSpecialCharacters(Row.Phone); } public static string ...

How to Skip first n rows in the Flat File Source and move the data into the SQl Server.

Skipping of rows from the TSV file can very easily done by just mentioning in a Text box which is present in the Flat File configuration wizard.  Select the no of rows you want to skip and you can see the output in the preview option.  You can also do the same setting by clicking on the flat file connection manager and changing the value in the highlighted field.

Improtant setting in the Execute SQL task

 While using the Execute SQL Task, it gives you a choice to connect to the Source or the destination , this is a very important setting as  this enbles the Execute SQL task to either run at the source or at the destination. The highlighted text is the box in which you keep the values.

SSRS_Drill Down , Drill through report and Subreport.

Drill down Report:  ( Making Reports Interactive/Dynamic ): Ex:           +YearNo                               +Sem                                      +Qtr                                              +Month O/p Drill down Effect: Column Name Visibility Toggles Item ProdCat Show - SubCat Hide ProdCat OrderYear Show - OrderQtr Hide OrderYear OrderMonth Hide OrderQtr Country Hide OrderMonth...

SSRS_Parameter and Cascade Parameter Report.

Create Parameter Report: To get the category as drop down. When you have to choose multiple values , you make the below changes in the Query.      Create Cascade Parameter Report: Cascade Parameters means  dependent  parameter. Ex: Create dataset with following: USe  IBank go SELECT  ACID , CustomerName , BRID ,  PID FROM  AccountMaster WHERE   BRID = @BRID  and  PID = @PID ·           First we need to add 2 parameters in our main SQL query (MainDataset). Once added it will automatically add in the Parameters in Report Data window. ·           Create new datasets to get the values in the 2 parameters. o     We need to get all the distinct values in the 2nd parameter.   Ex:  SELECT   DISTINCT ( BRID )   FROM  AccountMaster   o     We must need to add the WHERE clause in the 1st par...