Search found 53125 matches
- Wed Aug 22, 2007 4:30 pm
- Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
- Topic: RTI introduction
- Replies: 8
- Views: 5268
Simplified overview: Start with a regular job. SourceStage ---> Stages ---> TargetStage Replace source and target stages with XML-handling stages. XMLInput ---> Stages ---> XMLOutput Add RTI stages. These require you to have purchased SOA edition. RTIInput ---> XMLInput ---> Stages ---> XMLOutput --...
- Wed Aug 22, 2007 4:23 pm
- Forum: IBM QualityStage
- Topic: ERROR: 0012 incomplete record found on file
- Replies: 3
- Views: 1677
- Wed Aug 22, 2007 4:20 pm
- Forum: IBM QualityStage
- Topic: PAT file FAQ?
- Replies: 4
- Views: 1696
- Tue Aug 21, 2007 11:54 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Conditional execution of next job in sequence
- Replies: 22
- Views: 5767
- Tue Aug 21, 2007 11:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: REJECTED keyword in PX
- Replies: 8
- Views: 1666
- Tue Aug 21, 2007 11:45 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: BuildOp creation question
- Replies: 3
- Views: 1287
A Build stage is expected to consume rows on its input(s) and produce rows on its output(s). Your "hello world" code does not do so. You did not even report on which tab you'd placed the code. Could I suggest that you read the chapter on the Build stage in the Parallel Job Advanced Developer's Guide...
- Tue Aug 21, 2007 11:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fork Error - DataStage resource Limitations
- Replies: 3
- Views: 1405
It doesn't. I answered the question you asked, which was how to invoke ulimit from DSExecute. fork() is usually hampered by the UNIX process table becoming full, or an attempt being made to start (fork) too many child processes simultaneously system wide, which causes a bottleneck on the process tab...
- Tue Aug 21, 2007 9:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Fork Error - DataStage resource Limitations
- Replies: 3
- Views: 1405
Code: Select all
Shell = "UNIX"
Command = "ulimit -a"
Output = ""
ExitStatus = -1
Call DSExecute(Shell, Command, Output, ExitStatus)
Call DSLogInfo("ulimit -a" : @FM : Output, "Limits")- Tue Aug 21, 2007 9:16 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: for loop
- Replies: 5
- Views: 1156
- Tue Aug 21, 2007 9:14 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warnings - Severity
- Replies: 2
- Views: 669
- Tue Aug 21, 2007 9:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Invalid character value for cast specification
- Replies: 8
- Views: 3112
- Tue Aug 21, 2007 9:06 pm
- Forum: General
- Topic: DSObjects command sequence (vs Job Control API)
- Replies: 4
- Views: 2268
- Tue Aug 21, 2007 9:00 pm
- Forum: General
- Topic: Documentation for Serverr to PX edition?
- Replies: 3
- Views: 1309
- Tue Aug 21, 2007 2:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Ignoring Line Breaks
- Replies: 1
- Views: 801
- Tue Aug 21, 2007 2:00 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: c++ compiler
- Replies: 11
- Views: 3400
Then your PATH is not set up to find it. Use a find command.
Code: Select all
find / -name gcc -print 2>/dev/null