Quote:
Originally posted by pusht
thanks Andrew!!
But, neither of the tables has a column called USERNAME or USERPASSWORD.
:-(
|
Shame!
Well, then to debug I would start by simplifying your code as far as possible - get rid of the ref cursor, package etc. and just try this:
var UserName VARCHAR2(30)
var UserPassword IN VARCHAR2(30)
exec :UserName := 'jdauser';
exec :UserPassword := 'JDAUSER':
Select distinct u.usr_tech_key, grp_tech_key,
bas_user_name
from basusree u, basuguee g
where u.usr_tech_key = g.usr_tech_key And
usr_signon = :UserName And usr_secure = :UserPassword;