Search found 4605 matches

by kduke
Fri Jul 22, 2005 9:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: BASIC job control
Replies: 5
Views: 1861

I think Craig has a valid point. I prefer sequences because it is easier to maintain after I am gone. I think Hester, Ken Bland and others have similar methods as Craig because it gives them control. They have had restart capabilities for a long time because of this. At some point maybe they need to...
by kduke
Fri Jul 22, 2005 9:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job naming - alphabetical?
Replies: 5
Views: 1002

I really don't like this style. What happens when you want to reorder your jobs? Do you rename them? I prefer the name to have the target table in it somewhere. I like E to be somewhere in the name of a job that goes against the source. I think the order is the least important feature. I think the t...
by kduke
Thu Jul 21, 2005 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: copy or download tabledefinition into excel
Replies: 6
Views: 1245

Do an exact search for DS_METADATA where Ray is the poster. Modify his code.
by kduke
Thu Jul 21, 2005 2:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: copy or download tabledefinition into excel
Replies: 6
Views: 1245

Ray posted code to take DS_METADATA and save it as XML. That should get you close. Either that or you could save as comma delimited and import that into Excel.
by kduke
Thu Jul 21, 2005 12:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file write failures
Replies: 17
Views: 6216

Mr. Craig

Come to think of it memory leak could not be your problem because of your error message. Something in a hash file blew up. Was your hash file over 2GB? Another thing might be a char(255) or 254 in your data or key. Is that possible?
by kduke
Thu Jul 21, 2005 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file write failures
Replies: 17
Views: 6216

Craig We had a memory leak which caused problems like this. It had nothing to do with the hash file. It was running out of process memory. Do a ps command to see if the process is growing. I would try a type 18 file as well. Maybe type 2 is the problem. Eliminate any possiblity. Just a couple of ide...
by kduke
Thu Jul 21, 2005 7:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to cleanup unwanted hash files
Replies: 3
Views: 954

There was some SQL posted which listed the hash file names. You need to do this in a program and see if a hash file is still being used.
by kduke
Thu Jul 21, 2005 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: find/replace(Parameters) utility to promote to production
Replies: 10
Views: 3366

This may be a feature in the next release of Parameter Manager where you could set all the parameter defaults. This would be called a Data Set. So if you have 3 Data Sets for Dev, Test and Production. When you promote your jobs from Dev to Test then you apply the Test Data Set. This would for exampl...
by kduke
Thu Jul 21, 2005 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to cleanup unwanted hash files
Replies: 3
Views: 954

This topic should be in the Server Forum.
by kduke
Wed Jul 20, 2005 2:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Aborts with improper data type
Replies: 2
Views: 959

You have a couple issues which it maybe erroring out on. If you use it as a number and it is @NULL. You maybe doing substrings [] on @NULL. I would also change this into a case statement. Begin Case Case Num(Arg1) Begin Case Case Arg1 < 100 some code... Case @TRUE default code... End Case Ca...
by kduke
Wed Jul 20, 2005 2:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Aborts with improper data type
Replies: 2
Views: 959

Please format your code and the do alt-c before and after pasting it. This will save the indentation. This is unreadable.
by kduke
Wed Jul 20, 2005 2:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pass values to job parameters in a sequencer
Replies: 16
Views: 5180

You cannot use the return value in a routine activity because it should return @TRUE or @FALSE. You have to return the value in an argument.
by kduke
Wed Jul 20, 2005 12:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: calling sequencer through unix script
Replies: 2
Views: 1248

Does the sequence have mutiple instances checked in job properties?
by kduke
Wed Jul 20, 2005 12:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in my routine
Replies: 7
Views: 2447

Please post a new topic to ask a new question. ReadHashFile(HashFileName, KeyValue, HashRec) Ans = 1 open HashFileName to HashFile then read HashRec from HashFile, KeyValue else Ans = 0 end end else Ans = 0 end return(Ans) Where HashFileName, KeyValue, HashRec are the argument names ...