Page 2 of 2

Posted: Wed Apr 02, 2008 1:57 am
by ray.wurlod
There will be reclaimable space, but it will not be reclaimed - it can be re-used, as it is marked as "free", but the physical size of a hashed file never reduces until and unless a RESIZE operation is performed.

Posted: Tue Aug 26, 2008 6:09 am
by JITeam
Hi All,
Posting it here as its the appropriate thread. I need to delete specific data from Hashed File, so my design looks like

DRS(Dummy)-----Xfm (Get Key as param)---UV Stage

In the UV stage the SQL for userd efined is

DELETE FROM LOG_HF WHERE (Key = ?);

The job finishes without warnings but the data in the Hashed file is not deleted. This Hashed file is created in the default directory with out mentioning any path in the first place, any help pls?

Thanks,

Posted: Tue Aug 26, 2008 6:20 am
by ray.wurlod
It really is a different question warranting a separate thread. Is there a message logged showing what the UV stage has done? What is the data type of the Key column?

Posted: Thu Aug 28, 2008 7:11 am
by JITeam
Hi Ray,

Got it to work, if pased from teh transformer as parameter it was not working, now I select it in the source from dual table and it works !

Thanks