Viewing 15 posts - 11,281 through 11,295 (of 11,678 total)
In Excel, 0 equals FALSE for boolean values, and any other number equals TRUE.
However, I believe that Excel stores a boolean default as -1.
So, theoretically, nothing is wrong with your...
July 1, 2010 at 3:09 am
You have to options to reduce the column length from nvarchar(80) to nvarchar(6):
* Include a data conversion component. Select your column and set the length to 6.
* Or, go to...
July 1, 2010 at 3:01 am
According to BOL, the parameter size is used for the following:
Parameter Size
Provide the size of parameters that have variable length, such as strings and binary fields.
This setting ensures that...
June 30, 2010 at 8:02 am
To validate if the 4 files are present in the folder, you can use a Script Task. The code for this isn't really complex (if needed I can provide you...
June 30, 2010 at 7:09 am
If you go to the properties pane of the File System Task and you go to expressions (where you set the different paths), you can go to the expression editor....
June 30, 2010 at 6:13 am
What are the datatypes of the variables?
June 30, 2010 at 6:07 am
Well, I'm glad it worked out in the end 🙂
June 29, 2010 at 2:13 am
To be definite on the subject:
you can only use the dataflow (flat file source and OLE DB Destination) dynamically if (and only if):
* the flat files have the same identical...
June 29, 2010 at 2:01 am
When you look at the value of the variable, is that when your package is running or after it has just ran?
To check, you can also include a messagebox in...
June 29, 2010 at 1:49 am
You need only to deploy your cube when you made changes to the cube itself.
If the data in your relational database has changed, then you need to process the cube...
June 29, 2010 at 1:27 am
T-SQL is much easier to handle conversions than the derived column component, but, depending on the specific situation, the derived column can process rows faster in a data flow (And...
June 29, 2010 at 12:58 am
Not sure SSIS is the right tool for this, but here goes:
* Read the file with a flat file source. Set it up as one column only.
* Add a derived...
June 28, 2010 at 4:53 am
Viewing 15 posts - 11,281 through 11,295 (of 11,678 total)