Search found 72 matches

by Gokul
Thu Aug 04, 2005 5:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Determination if the Hash File Size has increased.
Replies: 11
Views: 4459

Thanks Arndw, Since i was testing in a separate Project the modification of VOC did not matter much. I created a new Project and in that ANALYZE.FILE was working . Now my query is how we determine whether the RESIZE command actually changes the size of hash file I had created a hash file whose stati...
by Gokul
Thu Aug 04, 2005 4:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Determination if the Hash File Size has increased.
Replies: 11
Views: 4459

Code: Select all

Hi, 
ANALYZE.FILE 
While executing the above command from Adminstrator Command window,i am getting error "Verb does not exist in VOC".
How do we add the Verb ANALYSE.FILE in VOC?


Thanks,
Gokul
by Gokul
Thu Aug 04, 2005 3:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Determination if the Hash File Size has increased.
Replies: 11
Views: 4459

Determination if the Hash File Size has increased.

Hi , Due to some obscure requirement we had to resize one of our hash file 1. Now how do i determine whether the hash file size has changed or it is able to accomodate data > 2 GB. 2. I tried using ANALYSE.FILE hashfilename. But i got a error stating the 'VERB ANALYSE.FILE is not present in the VOC'...
by Gokul
Mon Jul 18, 2005 1:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different types of Hash files
Replies: 7
Views: 3619

Ray,
These were not interview questions.
Just trying to get more out of you :wink:


Gokul
by Gokul
Sun Jul 17, 2005 3:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different types of Hash files
Replies: 7
Views: 3619

Thanks Ray.
by Gokul
Fri Jul 15, 2005 6:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different types of Hash files
Replies: 7
Views: 3619

Different types of Hash files

Hi,

I am in search of answers for the following questions:

1. What are the different types of Hash files.
2. Under what conditions we should used the specific type.
3. Performance difference in the types of hash file

Thanks,
Gokul
by Gokul
Mon Jun 27, 2005 11:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: type 1 and type 2 dimensions
Replies: 11
Views: 5819

Hi there, In case of RCD(rapidly changing dimensions), where the frequency of change is very high. It would be difficult to keep track of all the Columns due to disk space and other constraints. In such case,Normally the dimension is partitioned into 2 tables, 1. One containing the columns,whose his...
by Gokul
Tue Jun 21, 2005 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Help In Resolving Lookup
Replies: 10
Views: 4933

Rumu, It is not in the stage variable. sign(source.Val - Hash.Lower) And sign(Hash.Upper - Source.val) is written where u usually specify(drag) the source column (field) which will be used in lookup with the corresponding field of the hash. Datastage will execute the above code to get a value and th...
by Gokul
Tue Jun 21, 2005 4:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Help In Resolving Lookup
Replies: 10
Views: 4933

Hi Rumu sign(source.Val - Hash.Lower) And sign(Hash.Upper - Source.val) will be evaluted first before the Lookup to yield either 1 0r 0. By this i meant that Datastage will evalute the Code (sign(source.Val - Hash.Lower) And sign(Hash.Upper - Source.val)) and then use the result in the lookup. This ...
by Gokul
Tue Jun 21, 2005 1:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Help In Resolving Lookup
Replies: 10
Views: 4933

Re: Need Help In Resolving Lookup

Hi Rumu,

Code: Select all

sign(source.Val - Hash.Lower) And sign(Hash.Upper - Source.val) 
will be evaluted first before the Lookup to yield either 1 0r 0.

The Resultant 0 or 1 will be used to Lookup the dummy column LKP in the Hash.

So there shld be no problem in the Lookup.


Thanks,
Gokul
by Gokul
Tue Jun 21, 2005 12:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Help In Resolving Lookup
Replies: 10
Views: 4933

Hi, we were also facing the same Poblem. The Solution we developed was a crude one and Gurus here will tell us whether it is optimal or not? The Source Structure : Val id ---------------> Columns 1 1 6 2 The Lookup Table Structure: Upper Lower Value ---------------> Columns 1 4 A 5 7 B The Solution ...
by Gokul
Mon Jun 20, 2005 4:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CATALOUG PREFIX
Replies: 4
Views: 1429

Thanks Ray. Actually I was referring to one of your Posts regarding DSGetLinkMetaData,where you had specified. Code: Result = DSGetLinkMetaData(JobName, StageName, LinkName) Of course, you will need a DEFFUN in the second case, so will need to determine with what prefix DSGetLinkMetaData is cataloge...
by Gokul
Mon Jun 20, 2005 1:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CATALOUG PREFIX
Replies: 4
Views: 1429

CATALOUG PREFIX

Hi,

I want to knoe the Different prefixes used by Datastage to Cataloug Routines and Functions?

How do we determine those prefixes?

Thanks in Advance,
Gokul 10dulkar
by Gokul
Thu Jun 09, 2005 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe Stage Problem.
Replies: 3
Views: 2138

Universe Stage Problem.

Hi, I tested for a Job containing Universe Stage on my Local Machine.(i.e Server installed on My Local Machine). But when i tried the same job on our Production Server, it gave error. sample1..UniVerse_13.IDENT1.DSLink8: DSD.BCIPut call to SQLExecute failed. SQL statement:UPDATE "T2RngGT" ...
by Gokul
Wed Jun 08, 2005 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Seems Corrupted
Replies: 5
Views: 2498

Hi Ray,

The Query Given will only work for Account Hash file.
What if the Hash file is not an Account file,but is created on specific Path.

Gokul