Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: logon_screen_on_error
Uzytkownik "DAVID" <david_nat2000_at_yahoo.com> napisal w wiadomosci news:db8bd827.0401170605.4d4aaed2_at_posting.google.com...
> As we Know LOGON is the built-in procedure, thats why how can
> we change the above parameters value to false.
> As
>
> Below you see the Oracle built-in procedure
>
> PROCEDURE LOGON
> (username VARCHAR2,
> password VARCHAR2,
> logon_screen_on_error VARCHAR2);
>
>
> Could somone also send the code that we can use to handle the
> condition when we set the value to false for the above parameter.
Looks like its IN parameter in that procedure. It tells that procedure not to show logon screen if any error occurs during logon.
LOGON('any_user_name','any_password',FALSE) is correct call.
-- NoelReceived on Mon Jan 19 2004 - 08:56:46 CST
![]() |
![]() |