Search found 53125 matches
- Mon Mar 28, 2005 4:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequencer
- Replies: 4
- Views: 1098
I suspect Narayana, along with your peers, was using "Sequencer" to mean "Job Sequence". But I do prefer to use correct terminology (pedantic? do a search for apostrophe!), even when Ascential's own manuals and training materials fail to do so! A Job Sequence, as Roy said, is a graphical user interf...
- Mon Mar 28, 2005 4:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Loading Seq File to Database Performance
- Replies: 4
- Views: 1167
- Mon Mar 28, 2005 4:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to generate control files in a datastage job?
- Replies: 8
- Views: 6224
Provided that you are running with MetaStage proxy mode enabled and the listener is running, process metadata can automatically be captured by MetaStage. You can arrange for the captured data to be distributed from MetaStage. In an upcoming release, DataStage and MetaStage will share the same reposi...
- Mon Mar 28, 2005 4:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: TABLE GETS LOCKED
- Replies: 3
- Views: 964
You have not provided enough information. What kind of table is Table A? (That is, what brand of database?) What leads you to believe that the table (which table?) is locked? Have you checked with your DBA, who can inspect locks? What error/warning messages are being posted in the DataStage log? Do ...
- Mon Mar 28, 2005 4:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sequencer
- Replies: 4
- Views: 1098
- Mon Mar 28, 2005 12:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to remove control characters from source data
- Replies: 2
- Views: 1275
I'd be more inclined to use the UNIX tr command as a filter in a Sequential File stage, assuming that's what your source is. Use the tr class for characters in Control Set 0 (those with ASCII codes below 32) and translate them all to space or "". If you must do it in a Transformer stage, construct a...
- Mon Mar 28, 2005 12:32 am
- Forum: Enhancement Wish List
- Topic: Command Line Job Unlock Option
- Replies: 9
- Views: 6443
- Sun Mar 27, 2005 3:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Environment Variables vs JobParameters
- Replies: 7
- Views: 3565
Using environment variables for passwords means that there's somewhere on your system where the password is stored in clear. Apart from that, there's no reason not to use environment variables if you want. However, here are several reasons that I'd tend still to use "proper" job parameters. Using a ...
- Sat Mar 26, 2005 3:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Transformer Detected
- Replies: 2
- Views: 930
Welcome aboard! :D There is a lot of useful information in DataStage error and warning messages, if people would only take the time to read and understand it all. For example, it will tell you in exactly which part of the job it found the problem. So please do post the detail of the message, so we h...
- Sat Mar 26, 2005 3:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How can I read DataSet from Job Control ?
- Replies: 9
- Views: 4004
- Sat Mar 26, 2005 3:22 pm
- Forum: IBM QualityStage
- Topic: Error : User Id is a required stage property
- Replies: 6
- Views: 5867
- Sat Mar 26, 2005 12:04 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: String Constants in Px transform stages
- Replies: 5
- Views: 1357
- Sat Mar 26, 2005 12:01 am
- Forum: Enhancement Wish List
- Topic: Command Line Job Unlock Option
- Replies: 9
- Views: 6443
- Fri Mar 25, 2005 4:38 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: NLS mapping error
- Replies: 10
- Views: 3705
- Fri Mar 25, 2005 4:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: log files
- Replies: 4
- Views: 1306
You can define a token and, based on whether that token is defined or not, conditionally compile the PRINT statement. In this way you can turn it on again when you need to test the next version. * Toggle between $DEFINE and $UNDEFINE to enable/disable test statements $UNDEFINE TESTING $IFDEF TESTING...