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!
Search found 53125 matches
- 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
- 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...
- 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...
- 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
- Mon Feb 02, 2004 3:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Log
- Replies: 8
- Views: 2383
- 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
Hint: use "all terms" when searching for reject datasets
See, for example http://www.dsxchange.com/viewtopic.php?t=85439
- 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
- 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...
- 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
- 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...
- Sat Jan 31, 2004 3:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage with 64bit environment
- Replies: 5
- Views: 1745
- 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
- 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...
- 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...
- 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...