Search found 4605 matches

by kduke
Sun Aug 21, 2005 11:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HASH File question
Replies: 2
Views: 1746

I think I would change the metadata on that column to a varchar. I would also have the job delete and recreate the hash file so you get a new set of dictionary items.
by kduke
Fri Aug 19, 2005 12:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Discovering Where Hashed Files are used
Replies: 10
Views: 4717

Dan

You are welcome.
by kduke
Thu Aug 18, 2005 6:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How the find a File in the Directory in DOS
Replies: 19
Views: 5317

I gave you a routine to find one file. You should be able to find the next 39. We are not here to do your job. Just point you in the right direction.
by kduke
Thu Aug 18, 2005 4:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Statistic with UPDATE/INSERT Option
Replies: 4
Views: 1110

Do a search. This code has been posted before. StartedDateTime = DSGetJobInfo(RunHandle, DSJ.JOBSTARTTIMESTAMP) FinishedDateTime = DSGetJobInfo(RunHandle, DSJ.JOBLASTTIMESTAMP) StageNames = DSGetJobInfo(RunHandle, DSJ.STAGELIST) LinkNames = DSGetStageInfo(RunHandle, Stage...
by kduke
Thu Aug 18, 2005 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Discovering Where Hashed Files are used
Replies: 10
Views: 4717

At TCL run: select EVAL DS_JOBOBJECTS."@RECORD<6>" AS FILE_NAME FMT '35L', DS_JOBS.NAME AS JOB_NAME FMT '35L', DS_JOBOBJECTS.NAME AS LINK_NAME FMT '35L' from DS_JOBOBJECTS, DS_JOBS where DS_JOBOBJECTS.OLETYPE in ('CHashedOutput','CHashedInput') and DS_JOBOBJECTS.OBJIDNO = DS_JOBS.J...
by kduke
Thu Aug 18, 2005 4:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How the find a File in the Directory in DOS
Replies: 19
Views: 5317

I a routine you can open the directory like a hash file.

Code: Select all

Ans = @FALSE
DirName = Arg1
FileName = Arg2
openpath DirName to MyDir then
   read Rec from MyDir, FileName then
      Ans = @TRUE
   end
end
by kduke
Thu Aug 18, 2005 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Don't mark your posts "urgent" or request replies
Replies: 3
Views: 1823

Make this a sticky in the Server forum too.
by kduke
Thu Aug 18, 2005 4:22 pm
Forum: Site/Forum
Topic: Add a "DataStage Project Stories" Folder
Replies: 6
Views: 3382

I think is a great idea.
by kduke
Wed Aug 17, 2005 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Will there ever be an 'IN' clause for the Filter Stage
Replies: 10
Views: 4605

Why not pipe this to grep. A filter can be several commands or a shell script with this in it. grep can look for more than one thing by putting them in a file. You could easily use awk or sed or even Perl.

I am not sure about filter in PX. I was thinking about Server jobs.
by kduke
Wed Aug 17, 2005 5:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cobol copybook to SQL conversion
Replies: 4
Views: 7310

Ray should know. It is called KgdCreateDdlMetadata. It is based on a routine Ray posted.

Here is how to use it. http://www.dsxchange.com/viewtopic.php? ... dlMetadata
by kduke
Wed Aug 17, 2005 9:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version History of DataStage
Replies: 9
Views: 6115

You are welcome.
by kduke
Wed Aug 17, 2005 9:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NULL vs SPACE vs EMPTY String [Caution Rant Included]
Replies: 3
Views: 1199

Lance chill. Nature of the beast.
by kduke
Wed Aug 17, 2005 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job won't finish
Replies: 5
Views: 1551

Aggregators are very slow and eat up a lot of resources. I would break them up into one Aggr per job. Also do them in a temp table in the source or target would also help.
by kduke
Tue Aug 16, 2005 8:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Version History of DataStage
Replies: 9
Views: 6115

There are posts by either Ray or Ken which explain the highlights of the changes.