Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: calling a SP after materialized view refresh

Re: calling a SP after materialized view refresh

From: Frank van Bortel <frank.van.bortel_at_gmail.com>
Date: Sun, 17 Dec 2006 22:45:42 +0100
Message-ID: <em33f4$2f6$1@news6.zwoll1.ov.home.nl>


uday schreef:
> Hi
> can any one tell me how can i call a Stored procedure after
> materialized view refreshes itself autometically {the next refresh
> attribute is given to next day}
>
>
> regards
> uday
>

Don't understand the question, I'm afraid - one has nothing to do with the other.
Fact you assume it does, makes me doubt whether I understand what you are trying to ask.

 From SQL*Plus:
define output
exec my_proc(input1 => value, input2 => 'string', output)

That is actually a shortcut for:
declare
output variable_type;
begin

   my_proc(input1 => value, input2 => 'string', output); end;
/

-- 
Regards,
Frank van Bortel

Top-posting is one way to shut me up...
Received on Sun Dec 17 2006 - 15:45:42 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US