Viewing 15 posts - 16 through 30 (of 37 total)
Yes, there is two way.
1. You can Disable the last 4 task and running the package to see the output of first 6 task.
2. If you want to run the...
June 3, 2013 at 11:43 am
I am not sure how much this will help but individual task can be run from a package. You have to use Expression between tasks. A look in this article...
June 3, 2013 at 11:34 am
I do not come from a Java background. I do not even know the suggestion below might help you or not but still putting my thought here.
I assume that you...
May 27, 2013 at 8:19 am
You can use below expression in the derived column.
[Obj Acct] == "0" ? Sub : (Sub == "0" ? [Obj Acct] : [Obj Acct] + "." + Sub)
May 26, 2013 at 12:58 pm
In Derived column you use following expression:
(@[User::CopyofLT] == "B1") ? "STD" : ((@[User::CopyofLT] == "B7") ? "Q2FC" : ((@[User::CopyofLT] == "B8") ? "Q3FC" : ((@[User::CopyofLT] == "B9") ? "Q4FC" :...
May 24, 2013 at 7:05 pm
To resolve the issue you can follow either of the two steps:
1. Change your column data type in SQL Server table to Varchar
2. If you do not want to change...
May 22, 2013 at 7:22 pm
What tool you are using to design packages? SSIS 2008/2008R2/2012.
As per my experience you should always create environmental variables as System Variables.
May 14, 2013 at 7:23 pm
If you are doing it for single file as you have mentioned you can try this:
System.IO.File.Move(Dts.Variables["strSourceFile"].Value.ToString(), "D:\\Temp\\output.txt");
Where the first parameter is your variable name.
If you are looking for expression and...
May 14, 2013 at 7:07 pm
You can find a working example in this post.
SSIS: How to loop through Multiple Excel sheets and load them into a SQL Table?
April 22, 2013 at 12:44 pm
SSIS always treat the Excel Source data as unicode. This is a issue which is very common when you are reading from Excel file. You have to read the data...
April 21, 2013 at 1:12 pm
You can follow the following steps to get the column values in a variable.
1. Create a package level variable(ex: varCount)
2. Create an Execute SQL Task and set following attributes in...
April 21, 2013 at 1:02 pm
What is common between your Excel source and Database Table? Does the column name or sequence of column as you have shown in the example appears as they are in...
April 21, 2013 at 12:47 pm
What is the data type and scope of the variable?
I would suggest you to check the value of the variable before applying File System task? What values are assigning...
October 21, 2012 at 5:57 am
Google Analytics provide many dataset. I am not sure what kind of dataset you have been looking for. But if you want to pull the information using SSIS, you have...
October 12, 2012 at 3:33 am
Can you check the Input and Output Properties OLEDB Source and confirm the OLE DB Source Output->Output Columns, what data type is appearing into it? It shoulde be a DT_DECIMAL...
October 11, 2012 at 4:51 am
Viewing 15 posts - 16 through 30 (of 37 total)