Link to home
Start Free TrialLog in
Avatar of tomvv
tomvv

asked on

error procedure

SQL> EXEC sysman.setEMUserContext(”,5);    
BEGIN sysman.setEMUserContext(”,5); END;

                              *
ERROR at line 1:
ORA-06550: line 1, column 31:
PLS-00103: Encountered the symbol "?" when expecting one of the following:
( ) - + case mod new not null <an identifier>
<a double-quoted delimited-identifier> <a bind variable>
table continue avg count current exists max min prior sql
stddev sum variance execute multiset the both leading
trailing forall merge year month day hour minute second
timezone_hour timezone_minute timezone_region timezone_abbr
time timestamp interval date
<a string literal with character set specification>


SQL>
Avatar of Helena Marková
Helena Marková
Flag of Slovakia image

There is mistake there:
EXEC sysman.setEMUserContext(,5);

Try changing ” with ''
EXEC sysman.setEMUserContext('',5);
ASKER CERTIFIED SOLUTION
Avatar of Gerwin Jansen
Gerwin Jansen
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of tomvv
tomvv

ASKER

new