Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Stored Procedures
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
![]() |
![]() |