Search found 53125 matches

by ray.wurlod
Wed Nov 01, 2006 12:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.SEQOpen Failed
Replies: 23
Views: 6775

I came to know from the support team that dsoper has full control over the infiles folder. Any ideas? Don't believe anything you're told. Demand proof (for example a long form dir listing). The symptoms suggest an inability to read the file because it can't be found. This might be permissions in an...
by ray.wurlod
Wed Nov 01, 2006 12:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Not doing anything.
Replies: 7
Views: 1685

Symptoms? What were the most recent events logged? Have you got any progress reporting so that you can pinpoint the point of "failure" more accurately? My advice would be to put some in - maybe just before-stage and after-stage subroutines that report "got this far - in stage xyz".
by ray.wurlod
Wed Nov 01, 2006 12:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence reset
Replies: 12
Views: 3262

You need to construct pairs of stage variables, or calls for each of the key columns. The problem with RowProcGetPreviousValue is that it can only deal with one key column. Each pair of stage variables tests whether the value in that column has changed and remembers the value from the previous row (...
by ray.wurlod
Wed Nov 01, 2006 11:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg: Timestamp
Replies: 15
Views: 3897

Because no-one can do it, let's all demand picoseconds! :lol:
After all, processors are getting faster. We may need to start talking about partial binary digits.

"It's probably all about quantum"
-- Archchancellor Mustrum Ridcully
by ray.wurlod
Wed Nov 01, 2006 8:20 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Multi formatted fixed width file
Replies: 8
Views: 3819

I don't know, since TX is not my area of expertise. Certainly regular DS jobs could do it. I would imagine that you could separate processing into two streams, one for each format, and bring them together at the end (maybe by writing stream 2 into a temporary file and using an O/S command like cat t...
by ray.wurlod
Wed Nov 01, 2006 8:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Definition on an SQL Stored Proc
Replies: 7
Views: 1829

If you import the stored procedure definition you will have a "table definition" through which you can refer to the record structure processed by the stored procedure. After that it should be straightforward.
by ray.wurlod
Wed Nov 01, 2006 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No of servers vs record volume
Replies: 7
Views: 1574

My point was that the answer will be different if each row is ten bytes long or if each row is ten million bytes long (yes, that's a long row, but sometimes exaggeration helps to make the point).
by ray.wurlod
Wed Nov 01, 2006 8:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RE:string to date
Replies: 4
Views: 1887

There is no need for concatenation operators in the date format string. "%yyyy/%mm/%dd" would suffice.
by ray.wurlod
Wed Nov 01, 2006 8:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to process only last row
Replies: 5
Views: 1809

Etiquette Note

It was not u who posted the question, it was rajan.n

Had you wanted to use a pronoun, the one you were seeking was "you".
by ray.wurlod
Wed Nov 01, 2006 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Write the Statistics into a table?
Replies: 8
Views: 3289

A "serious of jobs"??? I guess it is. :D
by ray.wurlod
Wed Nov 01, 2006 8:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RE:Dates
Replies: 2
Views: 954

Use date_from_string (Modify stage) or StringToDate (Transformer stage) to convert the date into a string, supplying an approprate date format string. Use string_from_date (Modify stage) or DateToString (Transformer stage) to convert that result into a string of the desired format, again supplying a...
by ray.wurlod
Wed Nov 01, 2006 8:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: core.* files
Replies: 12
Views: 6072

Each phantom (= background) process in DataStage directs its output to a file in the &PH& directory. The file name is made up from the program name then the time started (in DataStage internal format) then the date started (in DataStage internal format). DSD.RUN is the program that runs serv...
by ray.wurlod
Wed Nov 01, 2006 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg: Timestamp
Replies: 15
Views: 3897

You could always concatenate Rnd(1000) :lol:
by ray.wurlod
Wed Nov 01, 2006 8:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.SEQOpen Failed
Replies: 23
Views: 6775

Error code 2 means "file not found". It's an operating system exit status.

Unless you have not posted the entire error message, it appears to be looking in a directory called "...".
by ray.wurlod
Wed Nov 01, 2006 7:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator Functioning
Replies: 3
Views: 778

There are limits on how much data the Aggregator stage can store in memory; if these are exceeded an abnormal termination occurs. For large data sets always sort incoming data on the grouping columns, and assert that they are so sorted on the Aggregator stage's input link. What this means is that, a...