Keerthi,
If I understand your question correctly, which I doubt, you have written a sequence that should loop infinitely, but it doesn't. Just as Sainath posted, you will need to supply us with more information and messages before any meaningful analysis can be made.
Search found 15603 matches
- Tue Jun 21, 2005 7:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequence Batch File Help
- Replies: 3
- Views: 837
- Tue Jun 21, 2005 6:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Timestamp conversion
- Replies: 23
- Views: 5861
- Tue Jun 21, 2005 5:04 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Aggregator stage - Warning
- Replies: 2
- Views: 969
Hello Mandyli, I think every one of us has encountered some form of this warning message when using a Px Aggregator for the first time. Fortunately detailed explanations have been covered numerous times in this forum. I did a quickie search for "When binding output interface field " and got lots of ...
- Tue Jun 21, 2005 3:12 am
- Forum: Enhancement Wish List
- Topic: AutoTrim for Input/Output objects
- Replies: 2
- Views: 1749
AutoTrim for Input/Output objects
I would like to see a built-in switch, either at a stage level or even at a column level, that would perform a TRIM() of all leading and trailing spaces plus 0x000 characters for VarChar columns in both Server and Px plus the same for CHAR columns in Server. I invariably end up doing this when my da...
- Tue Jun 21, 2005 2:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Effect of Unicode on data?
- Replies: 2
- Views: 722
Most likely at some point in time the column with the trailing 0x000 data was defined as a CHAR or a PIC X type field and it was padded automatically with the low-value or null (empty) value. You can do a TRIM(CONVERT(CHAR(000),CHAR(032),YourColumn)) to remove these extraneous values. Addendum Oops,...
- Tue Jun 21, 2005 1:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: FTP of zero-byte files suddenly failing
- Replies: 2
- Views: 1013
Tracy, can you go into a UniVerse session and do a "PORT.STATUS". Can you identify the hung process from the PORT.STATUS output, if so, then the last command executed and the number in square brackets will tell you in which program at which line the process might be stuck. In some cases the LIST.REA...
- Mon Jun 20, 2005 8:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to measure performance?
- Replies: 19
- Views: 5910
If idea of the Ascential benchmark center survived the IBM takeover then they would certainly be more than a bit interested in this type of information (particularly when DSXchange results differ from published numbers) Nonetheless I would consider this type of data to be very valuable to those of u...
- Mon Jun 20, 2005 7:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Secondary Index on multiple columns
- Replies: 1
- Views: 986
dhiraj, you will need to create a VOC entry to this file and enter information in the DICT portion - once that is done you can use CREATE.INDEX and BUILD.INDEX to put your secondary lookup key on your columns C and D. If speed is very important then it would be advisable to create another hash file ...
- Mon Jun 20, 2005 5:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: About Post-job server subroutine
- Replies: 2
- Views: 732
- Mon Jun 20, 2005 5:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Repository rebuild checking
- Replies: 2
- Views: 744
ogmios, I don't know which tables were referred to specifically, but the method is to explicitly disable use of the alternate keys (indices) on one query while allowing it in the other. The main table to compare would be, in my opinion, DS_JOBS ; so you could do a "LIST DS_JOBS WITH JOBTYPE NE 0 BY ...
- Mon Jun 20, 2005 3:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: initialization of job parameters
- Replies: 3
- Views: 1862
I would avoid trying anything tricky using the DataStage internal tables and structures. The easiest method would be to do an export of all your jobs into a .dsx file. Within the .dsx file you will have a repeating construct along the lines of: BEGIN DSSUBRECORD Name "MyParameter" Prompt "Prompt..."...
- Mon Jun 20, 2005 3:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Load the target from the row the Job gets aborted
- Replies: 2
- Views: 533
Bharathi, the keyword you would use to search the forum is "checkpoint" and you will find numerous threads on different ways of doing this. As you have DS 6.x there are some new functionalities that are not available to you, but you still have a number of options. If your input is always going to be...
- Mon Jun 20, 2005 1:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CATALOUG PREFIX
- Replies: 4
- Views: 942
- Mon Jun 20, 2005 12:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to measure performance?
- Replies: 19
- Views: 5910
Kim, I think that it would be great to get a wide list of performance numbers for a baseline of common type of jobs. Jobs along the general line of: 1. Read sequential -> Write Sequential 2. Read Sequential -> CPU transforms -> Write Sequential 3. Read Db -> Write Sequential 4. Read Sequential -> Wr...
- Mon Jun 20, 2005 12:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Estimate DS Job Complexity ?
- Replies: 2
- Views: 1415
Good morning Ravi, the job of estimating project complexity and duration is more of an art than a skill and there is little in the way of supporting documents or even procedures that can replace experience. Since DataStage and similar tools are meant to replace hand-coding a solution in a programmin...