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

Home -> Community -> Usenet -> c.d.o.server -> Re: Stored Procedures

Re: Stored Procedures

From: Mario Bucsics <mario.bucsicsNOkgSPAM_at_siemens.at>
Date: Wed, 22 Sep 1999 00:17:04 -0700
Message-ID: <03e6ae67.8a5edfc2@usw-ex0102-010.remarq.com>

Hello

Try it this way and it works:

Create OR Replace Procedure Log_execution Is user_id log_table.user_id%type;
Begin
Insert into Log_Table
VALUES(user_id, sysdate);
End Log_execution
;

But where do you get the user_id ??

 Mario Bucsics

Received on Wed Sep 22 1999 - 02:17:04 CDT

Original text of this message

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