Search found 53125 matches

by ray.wurlod
Tue Feb 02, 2010 2:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Timestamp
Replies: 6
Views: 21011

kumar66 wrote:Data string '2009-12-13 08:57:45' does not match format '%dd-%mm-%yyyy %hh:%nn:%ss'
That is precisely correct.

Just look at it!

Then proceed as Arnd advised.
by ray.wurlod
Tue Feb 02, 2010 2:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dynamic table structure support for DS job
Replies: 2
Views: 1228

Re: dynamic table structure support for DS job

gphukan wrote: The following task should be done in single DS job.
Why?
by ray.wurlod
Tue Feb 02, 2010 2:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: write DB2 table by DB2/UDB Stage
Replies: 5
Views: 3279

To system tables? Connect to db2 as the user name under which jobs execute and execute the query

Code: Select all

select * from sysibm.systables
by ray.wurlod
Tue Feb 02, 2010 1:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Edition 7.5.3 => Iconv not working with
Replies: 2
Views: 3557

Please try the following experiment. In the Administrator client's Command window execute the following query and let us know the result.

Code: Select all

SELECT EVAL "ICONV('2010/02/03','D/E')" FROM VOC FIRST 1;
by ray.wurlod
Tue Feb 02, 2010 12:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence aborts though all jobs within it finish successfull
Replies: 7
Views: 2967

Look carefully at the times. An attempt was made to start the job when it was already running.
by ray.wurlod
Tue Feb 02, 2010 12:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: write DB2 table by DB2/UDB Stage
Replies: 5
Views: 3279

You lack SELECT privilege to SYSIBM.SYSTABLES, which DataStage requires to verify that your table name exists in the target database.

Either get that privilege granted or execute as a user that has appropriate privileges to the system tables.
by ray.wurlod
Tue Feb 02, 2010 12:50 am
Forum: General
Topic: time conversion
Replies: 17
Views: 10756

9:59:59 is not matched by %hh:%nn:%ss format.
by ray.wurlod
Mon Feb 01, 2010 10:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can we achieve this?
Replies: 2
Views: 1438

Same way. Filter on the row number (@INROWNUM). Force the parallel Transformer stage to execute sequentially - for only 1000 rows it's not worth doing otherwise.
by ray.wurlod
Mon Feb 01, 2010 9:00 pm
Forum: IBM QualityStage
Topic: Question: 1)Overflow 2)"Running Job ..." in 4 days
Replies: 15
Views: 6493

This advice from kejuste can and should be ignored. We're talking blocks in QualityStage Match here - nothing whatsoever to do with any database! That you're getting block overflow suggests that you're not discriminating particularly well with your choice of blocking fields. Try adding one or two mo...
by ray.wurlod
Mon Feb 01, 2010 8:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot open executable job file RT_CONFIG60
Replies: 6
Views: 6259

Simplistic and, quite possibly, wrong. After all, it was not RT_LOG60 that could not be opened.
by ray.wurlod
Mon Feb 01, 2010 7:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "No output from command " from routine stage
Replies: 28
Views: 9496

Can you post the code for CompareFiles if it's changed from since you posted it, and include some DSLogInfo() calls to log what actual pathnames the routine receives? Presumably the -1 codes are caused by OpenSeq failing. If it seems fruitful can you please add all the pertinent clauses to each Open...
by ray.wurlod
Mon Feb 01, 2010 5:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "No output from command " from routine stage
Replies: 28
Views: 9496

OK, without explicit triggers a job sequence will interpret a Routine activity as having failed if its return value is anything other than zero. Add an explicit Failure trigger so that "failures" are handled, even though the trigger goes to exactly the same place as the Success trigger (th...
by ray.wurlod
Mon Feb 01, 2010 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "No output from command " from routine stage
Replies: 28
Views: 9496

I was under the impression that what you really wanted was a success/otherwise result from the routine.

On that basis I have been recommending returning any other information by other means, so that Ans contains only the success/otherwise value.
by ray.wurlod
Mon Feb 01, 2010 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What's the difference of these stages?
Replies: 3
Views: 1380

Or you could Search DSXchange - I am sure this question has been answered in the past.
by ray.wurlod
Mon Feb 01, 2010 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "No output from command " from routine stage
Replies: 28
Views: 9496

Then use DSLogInfo() to put the result into a log entry, rather than returning it through Ans. If you must return the result, use one of the user system variables (@USER0 through @USER4) rather than Ans.