Search found 53125 matches

by ray.wurlod
Mon Feb 02, 2004 7:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: [HELP.....] Compilation of a simple parallel job hangs
Replies: 7
Views: 2738

As a start, I'd take the advice in the error message to set your PWD environment variable to a value that will work on all nodes of your system.
Then see whether the other error still happens. Certainly the generated code isn't rocket science!
by ray.wurlod
Mon Feb 02, 2004 7:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help ! generating a file with multiple header&trail
Replies: 2
Views: 2477

Use the correct tool. That's not what DataStage is designed to do. If you must process header and trailer information, do it separately from the detail rows. Perhaps in other jobs or in commands or routines invoked from a job sequence. 1. Create the target files with the header information. 2. Appen...
by ray.wurlod
Mon Feb 02, 2004 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine
Replies: 5
Views: 3773

PLAN what you need to do. Write it out in ordinary language. Convert this to pseudo-code, so you get the logic right. Consult the Parallel Job Developer's Guide , particularly Chapters 15 and 54, for information on how to implement. Within Chapter 15 is a section on the Expression Editor, which (amo...
by ray.wurlod
Mon Feb 02, 2004 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Experiences with DataStage High Availability?
Replies: 7
Views: 1939

chulett wrote:I think you'll find that 'Player' is specific to the Orchestrate underpinnings that power PX.
True. Orchestrate gives you a Conductor and a number of Players. Wonder where they got their terminology? :lol:
by ray.wurlod
Mon Feb 02, 2004 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Log
Replies: 8
Views: 2383

The hot key for invoking the Filter dialog is Ctrl-T
by ray.wurlod
Sun Feb 01, 2004 10:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data stage Transformer Error
Replies: 1
Views: 977

Try a search of the Forum; others have encountered this before.

Hint: use "all terms" when searching for reject datasets

See, for example http://www.dsxchange.com/viewtopic.php?t=85439
by ray.wurlod
Sun Feb 01, 2004 6:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Shell Script to call a few dsjobs
Replies: 2
Views: 937

Read the chapter on DataStage Developer's Kit (Chapter 52), in particular the section on Command Line Interface (dsjob) in the Parallel Job Developer's Guide.
by ray.wurlod
Sun Feb 01, 2004 6:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dta-set location
Replies: 1
Views: 1940

You specify storage in the configuration file for the job. (You can have more than one configuration file, for example small jobs may not need as many processing nodes as larger jobs.) For each processing node in the configuration file you can specify as many data and scratch locations. Read Chapter...
by ray.wurlod
Sun Feb 01, 2004 6:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shell script which calls a few Datastagejobs
Replies: 2
Views: 2539

Read the chapter on DataStage Developer's Kit (Chapter 52), in particular the section on Command Line Interface (dsjob) in the Parallel Job Developer's Guide.
by ray.wurlod
Sat Jan 31, 2004 4:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete Jobs in a Proj Automatically(from command line)
Replies: 7
Views: 1886

Why would you want to? If you want to write routine then I could explain how. You would need to get the job number from DS_JOBS. Next you would need to delete that record plus records in DS_JOBOBJECTS and several hash files associated with that job like: RT_STATUSxx RT_LOGxx RT_BPxx RT_BPxx.O DS_TE...
by ray.wurlod
Sat Jan 31, 2004 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage with 64bit environment
Replies: 5
Views: 1745

Check that the storage of particular data types remains compatible. I think it does, but don't have the means to check. For example INTEGER should be four bytes (if they've made it eight bytes this may lead to problems unless its data type is now reported as LONG INTEGER).
by ray.wurlod
Fri Jan 30, 2004 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I am trying to migrate my jobs from one server to another
Replies: 8
Views: 2529

Export/import does not copy hashed files. After all, these are intended as temporary storage. :lol:
If you have copied hashed files such as SDKSequences, you now need to create pointers to them in the VOC file. To do this use the SETFILE command. Search the Forum for details.
by ray.wurlod
Fri Jan 30, 2004 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS and Oracle Sequences
Replies: 5
Views: 1405

Are you trying to INSERT or SELECT? In either case, specify sequencename.NEXTVAL (as indicated earlier) If it's a SELECT (your ORAOCI stage is extracting rows from Oracle) you can specify it in the derivation column. If it's an INSERT, the easiest way is to write your own SQL, adapting the generated...
by ray.wurlod
Fri Jan 30, 2004 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datstage import problems
Replies: 10
Views: 2213

We received this error on numerous occasions due to a lack of resources. DataStage and SQL server were running on the same machine, the administrator of the box being a SQL fan, treated DS like an orphan and had it share the operating system's cpu while allocating all the other cpu's to SQL. When w...
by ray.wurlod
Fri Jan 30, 2004 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: loading a MVS file from two different flat files
Replies: 3
Views: 995

Jump into a UNIX shell and learn about the sort command (man sort), in particular how to specify sort keys. It's quite a powerful command. Or you could invest in the CoSort stage, and invoke it from DataStage to perform the sorting. There is a Sort stage (no extra charge) in DataStage. It's the slow...