Search found 4605 matches

by kduke
Wed Jun 08, 2005 10:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Driver for creating DSN for Universe & Unidata
Replies: 5
Views: 1378

You do not need one for Universe. Use a UV stage. The DSN is localuv for hash files. I do not know about UniData. Maybe Dr. Ray does.
by kduke
Wed Jun 08, 2005 6:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing DSEngine/dsdlockd.log
Replies: 15
Views: 9981

I did it in the DEADLOCK.MENU. Worked like a charm. If this file was 2GB would it cause problems.
by kduke
Wed Jun 08, 2005 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Constraints to get data
Replies: 0
Views: 768

I would select into a hash file the last value then do a lookup and only select matches. Process more data but it will work.
by kduke
Wed Jun 08, 2005 10:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing DSEngine/dsdlockd.log
Replies: 15
Views: 9981

Thanks.
by kduke
Wed Jun 08, 2005 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some help in Migration of Jobs
Replies: 13
Views: 4545

If you're brave enough, you can write a basic routine to automatically update your DSX export file, so every DB2 plugin is changed to an Oracle one. I did this recently upgrading an oracle 8 to 9 system. Best take a backup first... This is not a good idea. These 2 databases have different propertie...
by kduke
Wed Jun 08, 2005 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing DSEngine/dsdlockd.log
Replies: 15
Views: 9981

Clearing DSEngine/dsdlockd.log

Professor Ray or anyone,

Can I zero out this log file?

-rw-rw-rw- 1 dsadm dstage 2147483653 Mar 5 12:46 ./DSEngine/dsdlockd.log

Thanks
by kduke
Wed Jun 08, 2005 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: temp delimited files that contains the delimited character
Replies: 7
Views: 1997

Use a hash file. Should not be a problem to have CR/LF. It will slow it down but it will not change the column.
by kduke
Wed Jun 08, 2005 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some help in Migration of Jobs
Replies: 13
Views: 4545

You could do a SELECT against DS_JOBOBJECTS and count(*). You need to GROUP BY OLETYPE. This should give you what you want. To run SQL against the repository use DataStage Administrator and select your project then press the Command button.
by kduke
Tue Jun 07, 2005 6:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to reterive Metadata informatrion
Replies: 3
Views: 1189

Do a search for EtlStats. Whole series of jobs to do exactly what you asked.
by kduke
Mon Jun 06, 2005 6:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Test for empty hashed file
Replies: 5
Views: 1885

You can SELECT COUNT(*) FROM MyHashFile; in a UV stage. You can COUNT MyHashFIle in a ExecTCL command.
by kduke
Wed Jun 01, 2005 9:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: New EtlStats soon
Replies: 34
Views: 13529

New EtlStats soon

I should be posting a new EtlStats soon. I am installing it at a new customer site. Found some missing routines. Found somethings I do not like. If you downloaded it then you are missing routines IsJobSequence and DateConv. Also routine EmailToRtn needs rewriting. If you tried to install it and coul...
by kduke
Sat May 21, 2005 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: is there any wrong in routine
Replies: 16
Views: 3517

Who cares, we are having fun.
by kduke
Sat May 21, 2005 2:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: is there any wrong in routine
Replies: 16
Views: 3517

Well he was just wrong. PROTECT THE OR's. Some have sense and then some have common sense and then some ain't got none at all. If you protect the OR's with () then who cares what langauge you use or what precedence is involved. I try to keep it simple by not having to worry about these things. Ray h...
by kduke
Fri May 20, 2005 9:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: is there any wrong in routine
Replies: 16
Views: 3517

What?
by kduke
Fri May 20, 2005 8:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: is there any wrong in routine
Replies: 16
Views: 3517

if (Fundname2 <> Fundname1) or (Fundname1='' ) and DateGenericDateDiff(Date2, Date1) < 365 then 0 else 1 Is almost always true because the () are in the wrong place. The () should always protect the or like: if (a<>b or b=1) and c<b then 0 else 1 or if a<>b or (b...