Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Procedure/Function text
"it's hot here" <it's_at_hot.here> wrote in news:Xns98F260F8B119E0x120@
66.150.105.47:
> Hi,
>
> I'm trying to search the bodies of all procedures and functions for
> certain words. I did this with all views like this:
>
> DECLARE
> lText LONG;
> sText VARCHAR2(8000);
> sName ALL_VIEWS.VIEW_NAME%TYPE;
> CURSOR cViewText
> IS
> SELECT VIEW_NAME, TEXT
> FROM ALL_VIEWS;
> BEGIN
> OPEN cViewText;
> LOOP
> FETCH cViewText INTO sName, lText;
> EXIT WHEN cViewText%NOTFOUND;
> sText := SUBSTR(lText, 1, 8000);
> IF INSTR(var_var, '<STRING>') > 0 THEN
> DBMS_OUTPUT.PUT_LINE(sName);
> END IF;
> END LOOP;
> CLOSE cViewText;
> END;
> /
>
> Is there a similar view I can use for all procedure or function
bodies?
> If not, how can I search all procedure and function bodies?
>
> Thanks,
> Andrew
>
>
Never mind: ALL_SOURCE
Thanks
-- Posted via a free Usenet account from http://www.teranews.comReceived on Tue Mar 13 2007 - 08:02:37 CDT
![]() |
![]() |