Viewing 15 posts - 166 through 180 (of 205 total)
Thank you, thank you, thank you!
June 9, 2010 at 3:40 pm
I found what I need for the month, day and year:
RIGHT("0" + (DT_WSTR,2)DAY( GETDATE()), 2) + "-"
+ RIGHT("0" + (DT_WSTR,2)MONTH(GETDATE()), 2) + "-"
...
June 9, 2010 at 1:44 pm
Thanks for the reference to the post. I think the article does the opposite of what I am trying to do, however. It looks like it is trying...
June 9, 2010 at 1:05 pm
Thanks, that helps me to retrieve the proper number. However, I'm still confused on how to assign that result to a variable so that I can eventually add the...
June 1, 2010 at 6:51 pm
Wow, that really worked! I've learned more about SSIS 2005 in the past month than in the previous 2 years! Thanks so much!
June 1, 2010 at 12:36 pm
Good advice! I have "Professional SQL Server 2005 Integration Services" and hope to look into some VB.Net books.
May 28, 2010 at 4:10 pm
What is a good way to learn about the SSIS 2005 Script Task and scripting in general?
May 27, 2010 at 5:49 pm
Now that I have the DestinationFolder, perhaps there is an object in SSIS 2005 that can generate (or commit) a new .csv file based on a change in the value...
May 19, 2010 at 9:18 pm
Okay, I've figured out a way to concatenate the columns into a destination folder string. The code looks like this:
SELECT
DEAL_NO,
...
May 19, 2010 at 8:37 pm
I fully agree and I took a similar approach. Thank you very much!
May 19, 2010 at 2:21 pm
I received an error: "Attempt to find input column vbCrLf."
May 18, 2010 at 5:50 pm
One small problem: the Derived Column Transformation doesn't seem to recognize Char(10). Here is what I used:
(REPLACE(ReplacedDealName,Char(10),""))
May 18, 2010 at 12:55 pm
Yup, it's a couple of carriage returns alright! So, how do I get rid of them?
May 18, 2010 at 12:23 pm
The source column looks something like this:
XYZ12A01[FOUR ODD SQUARES]LP_EXL_ID
Then I use the following REPLACE function within a Derived Column transformation:
LTRIM(RTRIM(REPLACE([Column 0],"LP_EXL_ID","")))
The destination column is varchar(200). The resulting...
May 18, 2010 at 11:48 am
So, I should create an Execute SQL Task and put a BULK INSERT command within that task -- is that correct?
May 18, 2010 at 11:34 am
Viewing 15 posts - 166 through 180 (of 205 total)