Search found 5168 matches
- Sun Feb 26, 2006 8:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Clear Status File
- Replies: 6
- Views: 1005
- Sun Feb 26, 2006 8:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Control General Question
- Replies: 30
- Views: 9255
- Sun Feb 26, 2006 8:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: timestamp format
- Replies: 8
- Views: 1503
- Fri Feb 24, 2006 4:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: change capture warnings
- Replies: 9
- Views: 8348
- Fri Feb 24, 2006 4:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Heap Allocation Error
- Replies: 2
- Views: 1605
You can search this forum to get a better results. "Heap allocation failed" means that it couldn't get more memory when it demanded it. So it has spilled to disk, and continued to process, albeit not as fast. Check the disk space and memory using commands like df and tops. Also try running as root a...
- Fri Feb 24, 2006 4:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: joining rows
- Replies: 17
- Views: 4645
Hi kumar Its working fine now.But could you suggest me how to take the latest row from that rows.Coz when i am using the Rem Dup stage its giving me the first row not the last row as i need. Thanks sam In both Sort as well as Rem Dup stage, the optiom to Retain First/Last are available in its prope...
- Fri Feb 24, 2006 4:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: joining rows
- Replies: 17
- Views: 4645
Try if this works for you: Create a stage variable "Concatenated", initialize it as empty string (""), and it defined as: If Concatenated = "" Then Input.ColumnD Else Concatenated : "/" : Input.ColumnD Read through the sequential file and send the data to a hash table with 4 columns. Column A, B, a...
- Fri Feb 24, 2006 4:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to make the DataStage jobs Read only.
- Replies: 9
- Views: 9409
Three problems with that solution. 2. There's no column called NAME in the DS_JOBOBJECTS table. 3. It's more appropriate to change the setting on the DS_JOBS table, which does have a NAME column. UPDATE DS_JOBS SET READONLY = 'RO' WHERE NAME = '<<JobName>>'; Beware that DataStage SQL is case-sensit...
- Fri Feb 24, 2006 2:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: automatic reset of an aborted job
- Replies: 7
- Views: 1145
I guess it may not be easy using Job Sequence. But you can achieve the same using the shell through which the sequece can be called. Just frame a loop for 10 times and check for RC. If it passes call the next sequence where the Email notification present else rerun the sequence. Pass the status of t...
- Fri Feb 24, 2006 1:51 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datasets having 30 M worth of data
- Replies: 5
- Views: 1325
There shoulnt be any issue with the dataset as long as the max file size of the sequential file is permited by the OS. But if you are looking for Lookup file set with very large number of rows, it will certainly affect you performance. You need to take care of loading the fileset into memory. Your p...
- Fri Feb 24, 2006 1:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Control General Question
- Replies: 30
- Views: 9255
kumar, Thibal would like to know some opinions about job sequences, that's what i did. And again, there is nothing wrong i said about you post. I just want to quote that there is the possibility to pass the parameter values to Job sequence it self. :D After all, this is a forum where we can all sha...
- Fri Feb 24, 2006 1:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to make the DataStage jobs Read only.
- Replies: 9
- Views: 9409
Hi Viny, Sevaral option available. You can change your whole project as Protected using administrator. By making this, only autorised user can access and modify the jobs. Or while you export using version control you can make your jobs as read only. Or at you risk you can change the UV files directl...
- Fri Feb 24, 2006 1:16 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: joining rows
- Replies: 17
- Views: 4645
Hi, If you are much concer about the number of variables, you can also customize as follows. Previously i havent mention the Else part in the If condition. Make sure the current derivation is given Else you would get as you are getting. Tot_Pos = If Old_Name=InputLink.Name And Old_Add = InputLink.Ad...
- Fri Feb 24, 2006 1:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: automatic reset of an aborted job
- Replies: 7
- Views: 1145