|
Re: How to write a script to call a procedure after checking the highest ID..?? [message #379278 is a reply to message #379267] |
Mon, 05 January 2009 18:15   |
flyboy
Messages: 1903 Registered: November 2006
|
Senior Member |
|
|
Quote: | how to write a script to call a procedure after checking the highest ID in the corresponding table....???
|
What kind of script? If you mean sqlplus script, then call it in an anonymous PL/SQL block:
begin
<check the highest ID in the corresponding table>
<call the procedure>
end;
/
I have no idea, what "checking the highest ID in the corresponding table" shall do nor the exact procedure definition (name, parameters), so I cannot say more.
|
|
|
|
|
|
|
|
|