444 reputation
19
bio website gowdhamand.wordpress.com
location
age
visits member for 1 year, 3 months
seen 5 hours ago
stats profile views 19

1d
answered Pass a variable using Script task in SSIS
May
15
comment String variable is truncated when inserted into an nvarchar(max) column
What is the data type of the @Variable? If it is of DT_WSTR then SQL Server equivalent bytes is 4000.
May
15
comment SSIS Expression use with SQL Query
Create a SQL execute task. Set Connection. Put your query in "SQLStatement". Set ResultSet to "Single row"[since your return only one row]. Go to Result Set page[which is right side]. Click "ADD". Set ResultSet Name = 0 and Select your variable to save the file number. Hope this helps!
May
15
comment SSIS Expression use with SQL Query
Have you tried the SQL execute task to get the "FileNumber" and save it to the variable? After that you can use the "FileNumber" into the "FileName" variable. Then you can set the property EvaluateAsExpression to TRUE. then you can write the expression. Hope this helps!
May
15
answered Getting duplicate data in ssis package
May
8
comment SSIS Package with file throught an ActionResult
same solution will work for CSV file as well. In the expression, you should use the connection string property instead of ExcelFilePath.
May
7
answered Prevent Duplicate headers in flat file destination - SSIS
May
7
answered SSIS Package with file throught an ActionResult
Apr
4
awarded  Student
Apr
4
awarded  Scholar
Apr
4
comment CharIndex to select rows with full word search
It worked...Thanks
Apr
4
accepted CharIndex to select rows with full word search
Apr
4
asked CharIndex to select rows with full word search
Mar
5
awarded  Caucus
Feb
1
comment How to upload Excel files created by SSIS or .NET to SSRS report server?
You can run the SSIS package using the SSRS and use the dataset prepared by SSIS. So that we can send the SSIS data to SSRS without any issues. Find article link. Hope this helps
Feb
1
comment How to upload Excel files created by SSIS or .NET to SSRS report server?
Do you want to render the SSRS report into the excel using SSIS?
Jan
31
comment Merge Join Transformation - Matching Multiple Columns
You should use the Lookup transformation and lookup the Cost and map only the matched output to the destination table. Hope this helps!
Jan
31
comment In SSIS, how do I get the number of rows returned from the Source that SHOULD be processed
You should use your log insertion in onFailure event as well. You should call RowCount transformation after the dataflow task and Precedence constraints should be set to "Completion", so that logging will happen even there are failures with respective row count.
Jan
30
answered In SSIS, how do I get the number of rows returned from the Source that SHOULD be processed
Jan
29
answered Junk characters at the beginning of file obtained via column transformations in SSIS