Viewing 15 posts - 1 through 15 (of 212 total)
This link contains code for an Active X Script Task in DTS to do what you want. It shouldn't be too hard to put in a SSIS Script...
April 1, 2010 at 10:44 am
Double-check the scope of your variable, making sure there is not a variable with the same name scoped at the package level and the Foreach Loop container level.
March 29, 2010 at 8:27 am
In the General tab, set Result Set to "Single Row"
In the Result Set tab, click the Add button to add a result and select your variable from the Variable Name...
January 18, 2010 at 11:43 am
Have you tried using the ISNULL sql function?
January 8, 2010 at 1:22 pm
You can do this with a derived column, assuming the value you want to capture is always preceded with an equal sign and followed by a semicolon.
Here's the syntax that...
January 8, 2010 at 12:51 pm
Is the machine it's failing on 64 bit?
There is no 64 bit driver for Excel.
See links for more information and a workaround.
January 6, 2010 at 11:48 am
Verify the schema the table belongs to is correct. If you created the table, it may have been created with your username as the schema.
December 28, 2009 at 9:06 am
It's been a while since I've used an ActiveX script task in DTS, but I remember not being able to specify the types of your variables.
Change your 2nd line of...
December 22, 2009 at 9:24 am
Here's the Expression syntax that will work if you're trying to accomplish this in a Derived Column transformation:
(DT_I4)((DT_STR,4,1252)YEAR(GETDATE()) + RIGHT("0" + (DT_STR,2,1252)MONTH(GETDATE()),2) + RIGHT("0" + (DT_STR,2,1252)DAY(GETDATE()),2))
December 22, 2009 at 7:13 am
You could try the code in this example: http://devhood.com/tutorials/tutorial_details.aspx?tutorial_id=469
I think it would be far simpler to just add a Data Conversion task after your Flat File Source...
December 7, 2009 at 10:22 am
The first question you need to answer is what to do with records that don't have a matching Department in your TBL_DEPARTMENT table. Can you ignore those records,...
November 30, 2009 at 10:14 am
Look at the Progress tab in BIDS. Scroll through the information and you'll see Start, Finished, and Elapsed time for each task.
November 30, 2009 at 6:53 am
Viewing 15 posts - 1 through 15 (of 212 total)