Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: Execute stored procedure when user connects ?
and certainly not on a 7.3.4 database.
rats can't think of an appropriate Floyd reference here.
-- Niall Litchfield Oracle DBA Audit Commission UK "Walter T Rejuney" <BlueSax_at_Unforgetable.com> wrote in message news:3A02BD3A.5B119A6C_at_Unforgetable.com...Received on Fri Nov 03 2000 - 11:43:54 CST
> "Jürgen Schneider" wrote:
>
> > Hi,
> >
> > is it possible to execute a stored procedure when a user connects to a
> > Oracle database. Is there something like a startup script that can be
> > edited.
> >
> > Thanks,
> >
> > // Juergen
>
> Create or Replace Trigger trg_after_logon
> After Logon On Database
> Begin
> raise_application_error(-20101,"Goodbye Cruel World");
> End;
>
> Although probably would not recommend that you actually use my example
> until you thoroughly understand what it would do.
>
>
![]() |
![]() |