Yes.
But it's a DIY (do it yourself) solution. You need to extract events from the log tables and direct them to the file(s) in question.
An ideal mechanism would be a DataStage job! :D
Search found 53125 matches
- Fri Sep 16, 2005 4:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Logs
- Replies: 4
- Views: 1191
- Fri Sep 16, 2005 4:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to compute the week of the month
- Replies: 3
- Views: 1027
- Fri Sep 16, 2005 4:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Creation of user of DataStage.
- Replies: 7
- Views: 2186
There are three roles. Operator can only run released jobs. They can't even view all log entries unless this is allowed in the Administrator client. They can't modify jobs or metadata and therefore don't need Designer or Manager. Developers can modify jobs and metadata, and therefore can use Designe...
- Fri Sep 16, 2005 4:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: User Defined SQL
- Replies: 7
- Views: 2628
- Fri Sep 16, 2005 4:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DRS stage Where condition being generated automatically
- Replies: 5
- Views: 1104
As Anand pointed out, a reference input link performs a "get row given key" function. The only way you can do this in SQL is using a WHERE clause so, when the DRS (or ODBC or any database stage type) serves a reference (lookup) input link, there is an automatically-generated WHERE clause in the SQL ...
- Fri Sep 16, 2005 4:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to specify Folder Path Name of NT box in Folder stage
- Replies: 1
- Views: 629
- Fri Sep 16, 2005 4:01 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: About modify stage
- Replies: 11
- Views: 3346
Had you searched here, as advised, you would have found this URL
- Fri Sep 16, 2005 3:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Orchestrate script calling issue
- Replies: 12
- Views: 4539
- Fri Sep 16, 2005 7:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to use perl to query info from DS repository
- Replies: 5
- Views: 1060
- Fri Sep 16, 2005 7:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: role of VOC file
- Replies: 2
- Views: 788
- Fri Sep 16, 2005 7:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Want to know about NEWACC
- Replies: 4
- Views: 894
- Fri Sep 16, 2005 7:42 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Orchestrate script calling issue
- Replies: 12
- Views: 4539
- Fri Sep 16, 2005 4:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: replace null to string in a sequential file
- Replies: 4
- Views: 1600
There are no nulls in sequential files. Therefore the Format tab in a Sequential File stage allows you to specify how null is represented. By default a zero length string is interpreted as null. In the Columns grid you can specify a different representation of null for each particular column. But th...
- Fri Sep 16, 2005 4:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Want to know about NEWACC
- Replies: 4
- Views: 894
- Fri Sep 16, 2005 4:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Branching Code without Raising Director Warnings
- Replies: 3
- Views: 867
I agree. Sometimes I use the job's user status area as a mechanism to pass back a value. Since routine arguments are passed by reference, you can alter their values in the routine and retrieve the results from the arguments. It's not recommended practice, but it does work. Remember to document a war...