Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Bulk Collect and Pipelined Table Function
Hi all,
I have a table function which selects from a view with a where clause defined at runtime. The fetch works with bulk collect. Today this function is not pipelined. Therefore, the select where this table function is called, is sometimes quite slow. That's the function:
FUNCTION F_GET_FILTER_RESULT
(sFILTER IN VARCHAR2 )RETURN NUMBERTABLE_TYPE IS
WHEN OTHERS THEN RESOLVED_RULE := NUMBERTABLE_TYPE();END;
Btw., I'm working with 9.2.0.5 on W2K.
Regards
Peter
Received on Fri Feb 25 2005 - 08:35:33 CST