Search found 53125 matches

by ray.wurlod
Sat Jun 17, 2006 3:26 pm
Forum:
Topic: SmartHeap Library MEM_BAD_POINTER
Replies: 6
Views: 2595

How much physical memory does the machine have?
by ray.wurlod
Sat Jun 17, 2006 3:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSCONTROLJOB
Replies: 5
Views: 1112

Please advise where you found this term. Then we may be able to assist.
by ray.wurlod
Sat Jun 17, 2006 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SAS Stage limit in DataStage
Replies: 1
Views: 1342

I expect you are running into a configured limit in SAS rather than a DataStage limitation.
by ray.wurlod
Fri Jun 16, 2006 1:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: including reason of rejection of row in reject file
Replies: 8
Views: 2082

Lacking sufficient information I am assuming your job design ends something like the following. -----> Transformer -----> Database | out | rej V RejectFile You use link variables on the rej link: out.SQLSTATE VarChar(12) out.DBMSCODE VarChar(12) out.LASTERR VarChar(2000)
by ray.wurlod
Fri Jun 16, 2006 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: handling error of Unix script in DS Before-job subroutine
Replies: 4
Views: 2065

Become fluent with UNIX scripting. It will stand you in good stead not just with DataStage but with all your interactions with UNIX systems.

If your script exits with a non-zero exit status, ExecSH will cause execution of the job to be halted. So that part of it's fairly automated.
by ray.wurlod
Fri Jun 16, 2006 1:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Resize VOC file to type 30
Replies: 3
Views: 1461

Tell 'em from me... :evil: :twisted: :x
by ray.wurlod
Fri Jun 16, 2006 1:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: re: occurs 0-200 times depending on clause in CFF stage
Replies: 2
Views: 1269

According to the documentation, OCCURS DEPENDING ON is not supported
by ray.wurlod
Thu Jun 15, 2006 8:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator mis behave and slow down when we correct it
Replies: 12
Views: 4732

Did you try doing the conversion using a Modify stage? Was it a Transformer stage or a BASIC Transformer stage? A BASIC Transformer stage has a limit to the precision that can be represented, which may explain the rounding errors. Indeed, you can still get rounding errors with decimal[18,2] if, at s...
by ray.wurlod
Thu Jun 15, 2006 5:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sub-optimal Error
Replies: 0
Views: 816

Search (Google?) for SQLSTATE = 01602. This is a message coming back from the database server; it is not a DataStage message.

Rewrite the query more efficiently?
by ray.wurlod
Thu Jun 15, 2006 5:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scratch readRecord failed: read() failed: Stale NFS file han
Replies: 1
Views: 1485

Welcome aboard. It's bad practice to have your scratch disk resource on an NFS mount. This is because network latency can lead to exactly the problem you encountered - "stale NFS handle" is another way of saying that your connection is old. Always have scratch disk on local disk. If possible also ha...
by ray.wurlod
Thu Jun 15, 2006 5:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator mis behave and slow down when we correct it
Replies: 12
Views: 4732

Try using square brackets.

Code: Select all

DB_AMT:DECIMAL[18,2] = decimal_from_dfloat(DB_AMT) 
by ray.wurlod
Thu Jun 15, 2006 5:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Resize VOC file to type 30
Replies: 3
Views: 1461

You can not resize VOC while anything is active in that project. You would need to SETFILE from a different project. Whence did you get this suggestion? I disagree heartily with it. While it is true that VOC can be a dynamic hashed file, there is no great gain, and higher risk of corruption. Resizin...
by ray.wurlod
Thu Jun 15, 2006 5:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call job on a different server to run from sequence
Replies: 2
Views: 1185

To do this from a job sequence on one server to run on a separate server you could run dsjob from an Execute Command activity. You only need to specify the foreign server name and authentication information once.
by ray.wurlod
Thu Jun 15, 2006 5:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle 9i timestamp(6) feature and error ORA-01830
Replies: 11
Views: 6706

Perhaps that's just a "feature" of View Data ?
by ray.wurlod
Thu Jun 15, 2006 5:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Split a record into multiple basing on a condition
Replies: 3
Views: 1076

There may be no need to bring the separate streams together - database servers can support multiple connections. If they are all inserts, for example, with different keys, it doesn't really matter how many "clients" are doing the inserts - up to a certain limit, of course. This is one way to effect ...