Search found 4605 matches

by kduke
Thu Jan 19, 2006 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading and Writing to the same hash file
Replies: 2
Views: 1174

Nige

I think you need to get rid of the IPC, buffering and maybe the link collector to make this work. That is just my opinion. I have not tried this combination. I am sure Ray will tell us why.
by kduke
Thu Jan 19, 2006 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reporting Assistant: literal does not match format string
Replies: 6
Views: 3433

I wonder if you can post the foreign key statements to make this work.
by kduke
Wed Jan 18, 2006 8:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Auditing
Replies: 3
Views: 989

Do an exact search for EtlStats.
by kduke
Wed Jan 18, 2006 8:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error message
Replies: 1
Views: 477

What version of DS? What version of Windows? What server?
by kduke
Wed Jan 18, 2006 8:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reconciliation of source data and target data
Replies: 13
Views: 7536

I would use crc32. Do a search on how to use this function. I would think this would be the fastest way to compare all fields.
by kduke
Wed Jan 18, 2006 7:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Readonly Routines
Replies: 2
Views: 765

Do an exact search for READONLY.
by kduke
Wed Jan 18, 2006 7:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reporting Assistant: literal does not match format string
Replies: 6
Views: 3433

You could always import into Access and then copy from Access to a linked table in Oracle. Otherwise you need to call support.
by kduke
Mon Jan 16, 2006 7:19 am
Forum: Site/Forum
Topic: 10K posts countdown for Ray
Replies: 12
Views: 5452

Ray knows we appreciate him. He complained the most about the current graphics. I say give Ray whatever he wants.
by kduke
Sun Jan 15, 2006 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version Control promote wrong job
Replies: 7
Views: 1576

You are probably right. It is only for Designer but may impact VC based on its design. The bug seems to be when someone has the job you are trying to promote up in Designer therefore it si locked. Nobody has proven this but it makes sense. It cannot get the job it wants so it promotes the wrong job....
by kduke
Sat Jan 14, 2006 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version Control promote wrong job
Replies: 7
Views: 1576

Do you have the XP patch for DataStage loaded?
by kduke
Thu Jan 12, 2006 7:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameters not being passed in test environment
Replies: 7
Views: 1754

Command Stage has a bug in it in older versions. You cannot feed parameter values to the command. It will look okay in the log but does not work. Change the stage to Routine Activity and call ExecSH or ExecDos. These work fine.
by kduke
Sat Jan 07, 2006 9:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with using sed, awk, nawk or tr
Replies: 22
Views: 5026

This is exactly why I hate sed, awk and Perl. It is almost unreadable. They are powerful but impossible to maintain. Assembler is great for the same reasons.
by kduke
Thu Jan 05, 2006 8:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with using sed, awk, nawk or tr
Replies: 22
Views: 5026

I would do like Ken. BASIC is so much easier though. If you did this in a shell script you would need to parse one field at a time using cut -d'|' -fx where x goes to the end of the line. I think if you where clever then Perl would work because you want * between ] and [ or |. Sed and awk can do all...
by kduke
Thu Jan 05, 2006 8:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a way to find what jobs have Before/After Exec Shel
Replies: 5
Views: 1259

Before routines are stored in field 9 and 10 has after routines in the ROOT record. SELECT EVAL "@RECORD<9>" AS BEFORE_ROUTINE FROM DS_JOBOBJECTS WHERE OBJIDNO = (SELECT JOBID FROM DS_JOBS WHERE NAME = '<<Job Name>>') AND OBJIDNAME = 'ROOT' ; I stole this code from Ray's post yeste...
by kduke
Tue Jan 03, 2006 6:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving the Job Version Number
Replies: 10
Views: 2507

I will hack it later when I get home.