Search found 53125 matches

by ray.wurlod
Mon Aug 28, 2006 8:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Date form Excel File
Replies: 2
Views: 713

Import warning at record 0 can also mean you forgot to set the "first line is column names" property to True.
by ray.wurlod
Mon Aug 28, 2006 8:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Internal error: function 'utf_to_row()' failed
Replies: 3
Views: 2058

The ^M character is probably being interpreted as a line terminator. Can you successfully extract data directly (not using FTP background)?
by ray.wurlod
Mon Aug 28, 2006 8:28 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Use PS to access flat file
Replies: 5
Views: 3646

No problem whatsoever. The training class uses flat file exclusively (for portability reasons).
by ray.wurlod
Mon Aug 28, 2006 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid UsreID/Password when login DataStage Client
Replies: 9
Views: 5831

Just be connected to any network that can serve you an address. Then it all works happily. I don't know the cause, but I have to use this technique way too often!
by ray.wurlod
Mon Aug 28, 2006 8:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while inserting rows to DB2
Replies: 3
Views: 980

Welcome aboard. :D

As you can see, this error has been reported by the DB2 client, if not from the database itself, rather than DataStage. Enlist the help of your DBA to trace it.
by ray.wurlod
Mon Aug 28, 2006 8:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Enterprise Edition Certification [ Test 415 ]
Replies: 9
Views: 2493

Not that I'm aware of. Pretty any other product, but no mention of DS.
by ray.wurlod
Mon Aug 28, 2006 6:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to obtain the starttimestamp of the parent-sequencer
Replies: 15
Views: 5712

You should be able to adapt the following code to your requirements. It reports the name of the job itself if it has no controller. FUNCTION UltimateController(JobName) $IFNDEF JOBCONTROL.H $INCLUDE DSINCLUDE JOBCONTROL.H $ENDIF Controller = "" TempJobName = JobName PrevController ...
by ray.wurlod
Mon Aug 28, 2006 5:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to obtain the starttimestamp of the parent-sequencer
Replies: 15
Views: 5712

Of course you can, how else could you determine its running status to be "running"?!
by ray.wurlod
Mon Aug 28, 2006 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sql type in Oracle Enterprise Stage Metadata
Replies: 0
Views: 706

For parallel jobs there are some known issues with the Oracle OCI in importing table definitions. Prefer to import the table definitions using Orchestrate schema (dbutil).
by ray.wurlod
Mon Aug 28, 2006 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to obtain the starttimestamp of the parent-sequencer
Replies: 15
Views: 5712

Probably the overwriting of the job handle. Definitely the illegal comparison with @NULL (you must use the IsNull() function to test for null). Failure to detach jobs when done with them probably doesn't help either. A possiblity would be re-cast this routine so that it could call itself recursively...
by ray.wurlod
Mon Aug 28, 2006 5:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Stage
Replies: 3
Views: 1176

But it's a one-off. Why not just search and replace using your favourite editor?
by ray.wurlod
Mon Aug 28, 2006 4:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Monitoring jobs with UNIX details (memory, space, etc.)
Replies: 5
Views: 1429

Of course it will! There's no such thing as a free lunch. You can't have your cake and eat it too. <<Insert favourite cliche here>>. It's a fundamental fact of performance monitoring that you want to impact the object being measured as little as possible. But your original question did not pose any ...
by ray.wurlod
Mon Aug 28, 2006 4:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error: The link contains no derivation rules
Replies: 5
Views: 4741

Can you garner any more information from the generated OSH? It appears to be complaining about a link - are you certain it's the XML input link? Can you post the exact and complete text of this error message? I presume that the job compiles without error.
by ray.wurlod
Mon Aug 28, 2006 4:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help regarding email notification stage
Replies: 3
Views: 1179

As Arnd suggests, there's not sufficient information to get "the point at which a job failed" through the API. For a severe enough failure, the job will not have been able to record the fact that it failed! The best you can do is grab the log for the current run of that job, using DSGetLogSummary() ...
by ray.wurlod
Mon Aug 28, 2006 4:50 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Problems with RTI
Replies: 7
Views: 5971

Would it work better if you invoked your map from within a DataStage server job (through a DataStage TX stage) and exposed the server job as the web service? Just a thought - I have no experience with DataStage TX whatsoever.