I found it in the Server guide and it says:
"EventType is the type of event logged and is one of:"
And then it lists all of the types. If you want multiple types, it seems to me you'd need to do so one at a time or use the "any" option and filter out the types you want.
Search found 42189 matches
- Sun Dec 18, 2011 9:16 am
- Forum: General
- Topic: Error message from a job
- Replies: 5
- Views: 1632
- Sun Dec 18, 2011 8:51 am
- Forum: General
- Topic: JobMonApp failure
- Replies: 17
- Views: 5453
- Sun Dec 18, 2011 8:46 am
- Forum: General
- Topic: Shell script to run job and pull out FATAL errors
- Replies: 5
- Views: 2415
- Sat Dec 17, 2011 10:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Help with Logic - Rejecting Records
- Replies: 15
- Views: 3313
- Sat Dec 17, 2011 10:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Help with Logic - Rejecting Records
- Replies: 15
- Views: 3313
Your input stream is split ('forked') to allow one side to be manipulated in a different manner from the other side... and then these two streams are joined back together. Typical usage could be where you need to count a group of somethings and then make a decision for each group member based on the...
- Sat Dec 17, 2011 9:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Implement the below logic
- Replies: 4
- Views: 1134
- Sat Dec 17, 2011 9:23 pm
- Forum: General
- Topic: Differentitate Datastage 8.7 from other tools
- Replies: 4
- Views: 3242
- Sat Dec 17, 2011 5:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reading SEQ Filename with a Date time
- Replies: 3
- Views: 1337
- Sat Dec 17, 2011 10:02 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: linksort before the sort stage
- Replies: 7
- Views: 1743
- Sat Dec 17, 2011 8:33 am
- Forum: General
- Topic: Error message from a job
- Replies: 5
- Views: 1632
- Sat Dec 17, 2011 8:28 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Remove Zero Rows from a String COlumn
- Replies: 6
- Views: 2727
There's no conversion of any kind here, they just need a simple check for all zeroes so those rows can be filtered out. Stage variable svIsValid:
Use svIsValid as your constraint.
Code: Select all
Convert('123456789','',YourField) <> YourField- Sat Dec 17, 2011 8:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Suppress logs job level
- Replies: 7
- Views: 2626
- Fri Dec 16, 2011 4:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Special Character which i need to remove
- Replies: 0
- Views: 2119
- Fri Dec 16, 2011 8:11 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: keywork column problem
- Replies: 1
- Views: 1135
- Fri Dec 16, 2011 8:07 am
- Forum: General
- Topic: Weird problem with command activity
- Replies: 7
- Views: 2867
no there is no problem with the path. i copy the command generated by sequence from log and run on shell and it gives output. FYI - this doesn't really prove anything, you could still have a path issue in the job. The only way to avoid that is to use an absolute path in the stage. To me it seems li...