Search found 53125 matches

by ray.wurlod
Mon Aug 20, 2012 4:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to satisfy for unkown incoming data for multiplescenario
Replies: 12
Views: 3218

Assuming these are the only two possibilities, use substring operators to extract all except the prefix, then trim leading and trailing tilde characters from the result. Trim(If Left(InLink.TheString,5) = "~LFA" Then InLink.TheString[6,Len(InLink.TheString)-5] Else InLink.TheString[8,Len(I...
by ray.wurlod
Mon Aug 20, 2012 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trying to understand job score (1)
Replies: 11
Views: 7198

1) No idea. You have not provided the configuration file nor any information about the use of node pools. But at least four. 2) Yes, and no. You must have at least one node in the default node pool, and the first-named of these (by default) will be where the conductor process executes. 3) Yes. The s...
by ray.wurlod
Mon Aug 20, 2012 4:43 pm
Forum:
Topic: Metadata Workbench vs. Metadata Asset Manager
Replies: 3
Views: 3024

Once, that is, they provide a command line interface that allows MAM to perform the initial tasks - define server, create import area, perform initial import. These are sadly lacking, and prevent one from totally automating the process.
by ray.wurlod
Mon Aug 20, 2012 4:41 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Bad Request Error when calling a Web Service through WST
Replies: 10
Views: 9177

We ended up using a packet sniffer (WireShark) to see what was actually being transmitted/received.
by ray.wurlod
Sun Aug 19, 2012 11:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fasttrack vs Datastaage
Replies: 1
Views: 653

Unless you specify expressions in FastTrack the generated job only has a container containing the text of your mapping specification as an annotation. You still need DataStage skills to achieve much more than filter, lookup and join.
by ray.wurlod
Sun Aug 19, 2012 10:02 pm
Forum: General
Topic: Tony Curcio at Information Server User Group MELBOURNE
Replies: 0
Views: 525

Tony Curcio at Information Server User Group MELBOURNE

Tony (IBM InfoSphere Data Integration Project Manager) will be at the Information Server user group meeting in Melbourne on Wednesday, August 29, 2012. Details at http://www.meetup.com/ISUG-Melbourne.

Please RSVP for catering purposes.
by ray.wurlod
Sun Aug 19, 2012 10:01 pm
Forum: General
Topic: Tony Curcio at Information Server User Group SYDNEY
Replies: 0
Views: 486

Tony Curcio at Information Server User Group SYDNEY

Tony (IBM InfoSphere Data Integration Project Manager) will be at the Information Server user group meeting in Sydney on Thursday, August 30, 2012. Details at http://www.meetup.com/ISUG-Sydney.

Please RSVP for catering purposes.
by ray.wurlod
Sun Aug 19, 2012 9:59 pm
Forum: General
Topic: Tony Curcio at Information Server User Group CANBERRA
Replies: 0
Views: 511

Tony Curcio at Information Server User Group CANBERRA

Tony (IBM InfoSphere Data Integration Project Manager) will be at the Information Server user group meeting in Canberra on Tuesday, August 28, 2012. Details at http://www.meetup.com/ISUG-Canberra.

Please RSVP for catering purposes.
by ray.wurlod
Fri Aug 17, 2012 5:49 pm
Forum: General
Topic: Routine DSJ LINKROWCOUNT Error
Replies: 11
Views: 3459

DSGetLinkInfo() has to be called with a job handle as its first argument. You are trying to call it with a job name as the first argument. Try DSJ.ME.
by ray.wurlod
Fri Aug 17, 2012 4:00 pm
Forum: General
Topic: Routine DSJ LINKROWCOUNT Error
Replies: 11
Views: 3459

You don't exit from your routine in the event that you cannot attach the job - you blithely sail on into the DSGetLinkInfo() code.
by ray.wurlod
Fri Aug 17, 2012 3:57 pm
Forum: General
Topic: Extract query information in the job
Replies: 6
Views: 1400

The structures in XMETA are deliberately undocumented by the vendor, and may change at any time. Using exports is probably safer as a long-term strategy.
by ray.wurlod
Fri Aug 17, 2012 3:41 am
Forum: General
Topic: Execute command activity and Exception Handler
Replies: 2
Views: 1890

If you have an explicit Failure trigger it should pre-empt anything the Exception Handler might be set up to do. A Failure trigger should fire if the exit status is any non-zero value.
by ray.wurlod
Fri Aug 17, 2012 1:11 am
Forum: General
Topic: Job access log
Replies: 3
Views: 1128

Welcome aboard.

This information can be found in the DS_AUDIT table, MODS association.

Search DSXchange for examples.
by ray.wurlod
Fri Aug 17, 2012 1:09 am
Forum: General
Topic: Is there a way for us to name the DSJOBREPORT file?
Replies: 8
Views: 2248

Wrap them in your own after-job subroutine (using CALL statements). You can use DSExecute rather than ExecSH within your own routine.