Viewing 15 posts - 11,206 through 11,220 (of 11,678 total)
That is indeed very odd. Maybe even SSIS can have the Monday blues?
August 17, 2010 at 12:57 am
If you use trim functions in the lookup component, don't forget to provide aliases for the columns!
(sorry, I forgot to mention that sooner :))
If you don't do that, every column...
August 16, 2010 at 11:55 pm
Nice question, thanks. A good follow up of the previous rounding questions.
And a great explanation.
August 16, 2010 at 11:52 pm
Also, trim the columns in your lookup component, you never know. I believe you can only use LTRIM and RTRIM there.
August 16, 2010 at 12:48 pm
SanjayAttray (8/16/2010)
August 16, 2010 at 8:39 am
How is the OLE DB Destination component configured? Did you use the fast load option and if yes, how did you configure the options?
August 16, 2010 at 8:07 am
Also check if there is some case sensivity.
It is a good practice to put everything in either lowercase or in uppercase, so that there can be no issues regarding the...
August 16, 2010 at 7:56 am
In the beginning of the article, it is explained how you can add a variable to the variable mappings of the for each loop container. This variable will contain the...
August 16, 2010 at 4:57 am
You can use the dtutil utility in the command line to achieve this:
August 16, 2010 at 12:31 am
You need a seperate data flow for each type of source. Even if you have 2 excel files but with different structure, you need 2 different dataflows. Then choose conditionally...
August 16, 2010 at 12:29 am
Nice question. Usually an Identity column is used as a primary key (and thus having a unique clustered index), which will prevent the insertion of duplicate values.
August 16, 2010 at 12:26 am
The connection string is used to connect to a database using OLE DB, right?
My connection strings look the same, but I don't have the Application Name part.
August 13, 2010 at 12:33 am
ktlady (8/12/2010)
In the ADO Net Source specification, i was...
August 13, 2010 at 12:25 am
It seems that you are trying to insert a string into a variable of datatype binary, which is causing the error.
You said that your package variables are of the string...
August 13, 2010 at 12:21 am
You have several options:
- split out the code in multiple expressions. (not good for maintenance)
- create a stored procedure at the beginning of your package. This sp contains your code...
August 12, 2010 at 3:04 am
Viewing 15 posts - 11,206 through 11,220 (of 11,678 total)