Connecting to different schemas in one menu [message #315833] |
Tue, 22 April 2008 22:55  |
sirfkashif
Messages: 70 Registered: September 2007 Location: Rawalpindi
|
Member |
|
|
Dear all,
I have a menu in which all the forms and reports are connected to scott schema but there is one form which i want to connect to hr schema.
Any help will be appreciated.
Regards,
Kashif Ali
|
|
|
|
|
|
|
|
|
Re: Connecting to different schemas in one menu [message #316149 is a reply to message #315969] |
Wed, 23 April 2008 23:18   |
sirfkashif
Messages: 70 Registered: September 2007 Location: Rawalpindi
|
Member |
|
|
on-logon trigger i have written this but still asking me for a logon
declare
uname varchar2(10);
pass varchar2(10);
begin
uname := 'scott';
pass := 'tiger';
logon(uname, pass || '@orcl');
end;
can you identify what wrong with this
Thanks in advance
Regards,
Kashif Ali
|
|
|
|