Search found 80 matches

by tagnihotri
Mon Aug 31, 2009 10:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Abort
Replies: 2
Views: 2471

One of the other common mistake is handling the warnings in seq. Many a time we have some "acceptable" or agreed warnings, but then while building the seq we need to be sure to code the seq in a way to still carry on even if have warnings (within limit).
by tagnihotri
Mon Aug 31, 2009 10:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Identifying Long Running Jobs
Replies: 8
Views: 4324

The way I have achieved this is, by writing the start time of each job at the start of job and then keep on checking the elapsed time from this log file and if a job is running more than expected*, an alert is raised. Also, I am currently running the jobs using UNIX scripts, but then the initial imp...
by tagnihotri
Tue Nov 14, 2006 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Error
Replies: 3
Views: 2087

Re: Hash File Error

Also check for the correct VOC entries (which should be in synch with the presence of the mentioned files).
by tagnihotri
Tue Nov 14, 2006 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Tuning
Replies: 9
Views: 4608

Can you please detail the job design, how you have identified the "slow running statements" from jobs!
I do agree the scenario can occur in any DW but recommendations depends on Design and Functional requirements :wink:
by tagnihotri
Tue Nov 14, 2006 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checkpoint run in Sequencer
Replies: 6
Views: 2527

Re: Checkpoint run in Sequencer

Can you elaborate the point "But this requirement is only for job 4 and not for any other job" !
by tagnihotri
Tue Nov 14, 2006 7:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage
Replies: 13
Views: 6587

Re: Join stage

Have you sorted both the links in same order ?
by tagnihotri
Mon Nov 13, 2006 2:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequencing
Replies: 4
Views: 2676

Re: Job Sequencing

Also let us know the functional requirement!
by tagnihotri
Fri Nov 10, 2006 2:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Tuning
Replies: 11
Views: 5043

Re: Performance Tuning

Tunning querries depends on n number of things i.e. whether db is paritioned ? whether you are using indexing efficiently ? Whether you are extracting only required collumns? .... As far as handling derivation in transformer stage is concenred it again depends but db2 normally turns to be efficient ...
by tagnihotri
Fri Nov 10, 2006 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage
Replies: 7
Views: 3252

APT_STRING_PADCHAR, trim sometimes don't actually trim the collumns which are padded with funny characters (depending on the default value of the env variable). So better check the collumn data, which may not be actually same (i.e may be padded with these funny values) !!
by tagnihotri
Fri Nov 10, 2006 12:16 am
Forum: General
Topic: DS Info - Problem with URL
Replies: 6
Views: 6186

I read you don't have acess to DS which makes things tougher! But the best way I think would be to base any DS version say 7.5 first, try and explore the pdf's its features and fundamentals. For any querries forum is always there! Exploring the enhancements may be really interesting but you won't be...
by tagnihotri
Fri Nov 10, 2006 12:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading from db into a squential file without deilimeter.
Replies: 6
Views: 2272

"and the sqltype as char" While doing this check for the paded character (i.e. default env variable) because you may end up padding your char fields with funny characters which may not be even printable.
by tagnihotri
Fri Nov 10, 2006 12:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error retrieving results from server
Replies: 8
Views: 4538

The syntax of the string representation of a datetime value is incorrect. Quick solution may not be the best one is to read and write your date collumn changing their data type to char. This should supress the warning. Secondly as already pointed I belive you should extract the records in a seq fil...
by tagnihotri
Thu Nov 09, 2006 11:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: functionality question
Replies: 4
Views: 2462

Please mark the post as resolved
by tagnihotri
Thu Nov 09, 2006 11:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reference lookup generated, Only the last row was used
Replies: 11
Views: 9169

As highlighted "insert a single active record in the target table" , we should have only one active record which if changed should be updated or if a new record not present in db comes, should be inserted. Therefore in no scenario the count of records returned from the lookup should be mor...
by tagnihotri
Thu Nov 09, 2006 11:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dataset read problem
Replies: 13
Views: 5962

Ray, I will take a note of this from there on! thanks


Adasgupta,
Can You please detail your job design