Viewing 15 posts - 76 through 90 (of 188 total)
I think this should be giving you a syntax error. I don't think you can use a parameter in an assignment.
January 21, 2005 at 9:49 am
January 21, 2005 at 12:54 am
Oops yeah, the output parameter from an ExecSQL task needs to be the result of a select query.
Right now you have two sprocs, one depends on success of the other? ...
January 20, 2005 at 2:59 pm
Try this in your Exec SQL Task...
DECLARE @rc int
DECLARE @rptdt datetime
EXEC @rc = dbo.usp_MySproc @rptdt
SELECT @rc AS MyOutputParam
You can now assign the result of...
January 20, 2005 at 1:52 pm
When you create your Oracle connection, use the Oracle ODBC driver, not the OLEDB provider.
January 20, 2005 at 1:37 pm
You should change your design to the one I described. While called a "DataSource" the Excel File that is referred to in the DPT is the destination. Each transformation must have...
January 20, 2005 at 1:26 pm
Your first step should be an ActiveX before the DPT. When you use Excel as a destination, the file must already exist when the transformation begins. So you will need to...
January 20, 2005 at 10:58 am
Okay then, you don't have a problem. Source File is handled in its connection object. Destination Database is handled in the connection, table in the transformation. Instead of the format...
January 19, 2005 at 10:34 am
Here is an example.
I have a package configuration table that stores a bunch of dates, flags and such that tell this particular package how to run, one of which is a...
January 18, 2005 at 4:40 pm
Well it ain't fast if it don't work, eh?
Keep in mind that you can run multiple transformations all at the same time -...
January 18, 2005 at 3:50 pm
Not sure why you are hanging on to bulk insert? I don't think it meets your needs. Why not trash it and use text file source instead. Select the appropriate...
January 17, 2005 at 3:49 pm
I found a nifty new use for the dynamic properties task. I use it to manage step precedence bases and values in a package that requires the dynamic skipping of...
January 17, 2005 at 12:18 pm
Once you fix that issue, you might also consider dropping the duplicate mapping of the b fields. Also bad form to use * in your source sql. Guess what happens...
January 13, 2005 at 10:02 am
Thank you, Aaron! I will share this with my team!
October 25, 2004 at 10:37 am
I would like to know too!
This is what I have been doing instead -
1 - evaluate - set global var to indicate pass or fail.
2 - take care of business - net...
October 22, 2004 at 4:53 pm
Viewing 15 posts - 76 through 90 (of 188 total)