Search found 4605 matches

by kduke
Wed Jul 12, 2006 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: cleaning up project
Replies: 13
Views: 3625

Ray, biggens is NOT Texan. Bigguns is. :wink:
by kduke
Tue Jul 11, 2006 8:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query about dscmdexport
Replies: 13
Views: 5668

You can export one job with this post http://www.dsxchange.com/viewtopic.php?t=98137 using dsexport.exe instead of dscmdexport.exe.
by kduke
Tue Jul 11, 2006 8:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Hadling Function in Routines
Replies: 5
Views: 1602

Please edit your post and put code tags around your code so the indentation is kept. Your code looks fine. If your sequential file is small then there are other ways to search it. I think the openseq is blocking you from processing this in another job. You can easily solve this if the file is small....
by kduke
Tue Jul 11, 2006 8:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: cleaning up project
Replies: 13
Views: 3625

I posted a script http://www.dsxchange.com/viewtopic.php?t=95242 which will find all files greater than 500mb. This is a good starting place.
by kduke
Tue Jul 11, 2006 8:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Its very urgent!!Please reply
Replies: 28
Views: 12093

Agreed! This client is stupid.
by kduke
Tue Jul 11, 2006 6:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating DS_JOBOBJECTS
Replies: 4
Views: 1587

I would do the update on job name one at a time instead of renaming from the old name. Get one to work first before trying the rename.
by kduke
Tue Jul 11, 2006 6:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating DS_JOBOBJECTS
Replies: 4
Views: 1587

Ray is saying that this is closer

Code: Select all

INSERT INTO DICT DS_JOBOBJECTS 
(
   FIELD,
   CODE,
   EXP,
   NAME,
   FORMAT,
   SM
) VALUES (
   'HashedFileName',
   'D',
   '6',
   'HashedFileName',
   '64L',
   'S'
);
by kduke
Sat Jul 08, 2006 9:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance tuning with EtlStats reports
Replies: 7
Views: 1595

The new EtlStats includes a few jobs which extract ETL metadata like the table names associated with the link name. This is only for output links but this becomes very useful. You can now tie row counts to table names. Here is the SQL. You need to find the right jobs to run to populate the tables. T...
by kduke
Fri Jul 07, 2006 7:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Listing all hash files
Replies: 7
Views: 1993

'CHashedOutput','CHashedInput' determine input and output but what we think of as input DataStage thinks is output. Take the SQL and either use one value or print this field.
by kduke
Fri Jul 07, 2006 6:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting the job properties using the sql on file system.
Replies: 2
Views: 688

http://www.dsxchange.com/viewtopic.php?t=93363&start=0 will show you the SQL. You need to add CATEGORY to this.
by kduke
Thu Jul 06, 2006 10:55 pm
Forum: DSXchange Testimonials
Topic: Keep up the good work friends!
Replies: 8
Views: 18947

Vincent Loved the blog on DataStage Simplicity. Very cool. My thought process completely. DwNav and all my tools are aimed at reducing the complexity of ETL to help understand the overall data flow within ETL. Simplicity also means consistancy. ParameterNavigator is aimed at consistancy and simplify...
by kduke
Thu Jul 06, 2006 10:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running Sequence from command line
Replies: 11
Views: 2662

I had a feeling you might think that.
:lol:
by kduke
Thu Jul 06, 2006 6:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OPENPATH (Directory file list) and Encoding problems
Replies: 13
Views: 4363

I guess the second question too. Huh Arnd?
by kduke
Thu Jul 06, 2006 5:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HTML to XML transform
Replies: 4
Views: 777

Probably manually. By searching for the tags you want to change. I would think stage variables would be needed to aggregate a field by catenating values across lines.