Search found 42189 matches

by chulett
Wed Oct 22, 2008 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORACLE not available
Replies: 2
Views: 1144

Those errors mean the Oracle instance you attempted to connect to was down. So either it was available earlier but not now or, as Arnd mentions, you connected to a different (and still unavailable) instance. Check the Server job's log, the first record will show the parameter values it used. Or doub...
by chulett
Wed Oct 22, 2008 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to call stored procedure with in the before sub routine
Replies: 9
Views: 1693

Go ahead. Use whatever command line interface exists for your database - for example, 'sqlplus' for Oracle.
by chulett
Wed Oct 22, 2008 7:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to create from an input string a multiple output row ?
Replies: 3
Views: 1129

You may not know how many delimiters there will be on any given run, but do you know what the maximum value of 'n' would be?
by chulett
Wed Oct 22, 2008 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date conversion
Replies: 5
Views: 1673

Going that route, you'd need both IConv and OConv. First convert the data to internal format and then back to external format using the desired mask. If your date is consistent, meaning always 8 digits, you can also go the substring route: Link.AC_COMPLETED[7,2] : '/' : Link.AC_COMPLETED[5,2] : '/' ...
by chulett
Tue Oct 21, 2008 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I overriding sequence and parallel job parameters?
Replies: 8
Views: 4373

No clue as I don't have access to the 8.x version, someone else is going to have to answer that one.
by chulett
Tue Oct 21, 2008 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Discover if a sequence was called by another
Replies: 2
Views: 1172

Hmmm... not sure if there's an easier way, but the DSJobController macro (or DSGetJobInfo with the DSJ.JOBCONTROLLER InfoType) will give you the name of the controlling job. You could then take that job name to the repository and query for the job type.
by chulett
Tue Oct 21, 2008 2:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Error Log
Replies: 6
Views: 1428

Trap what errors? And what exactly do you mean by "trap" in this context?
by chulett
Tue Oct 21, 2008 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I overriding sequence and parallel job parameters?
Replies: 8
Views: 4373

Of course. You need to ensure that each Sequence has defined in them all of the parameters that each Job Activity they will be running, needs.
by chulett
Tue Oct 21, 2008 12:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing multiple values to the 'SELECT' query in ODBC stage
Replies: 8
Views: 1944

Same way, basically. Include a job parameter for the string and put it in your where clause surrounded by hash marks.
by chulett
Tue Oct 21, 2008 12:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset Failure
Replies: 7
Views: 1563

OK, that all looks fine. So, your ODBC Action is set to "Call stored procedure"? If that actually runs the proc during a reset, I'd report that as a bug to your official support provider.
by chulett
Tue Oct 21, 2008 11:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset Failure
Replies: 7
Views: 1563

How exactly is your script doing the "reset"? Post your script or at least that relevant portion.
by chulett
Tue Oct 21, 2008 10:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rejected Row still being transferred
Replies: 7
Views: 1919

No - if one of them works for you, simply wrap the whole constraint in a Not() to get the "opposite" of it.
by chulett
Tue Oct 21, 2008 10:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence If then else logic
Replies: 4
Views: 1989

The Nested Condition stage is what you need. Check the job parameter value in the triggers to the child Job Activity stages, make sure they are mutually exclusive.
by chulett
Tue Oct 21, 2008 10:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rejected Row still being transferred
Replies: 7
Views: 1919

Your logic is faulty. One good field makes it goes down the good link, while one bad field makes it go down the reject, so both are perfectly valid unless all fields are good/bad.