Cause
Table system.aq$_internet_agent_privs is missing in "SYSTEM" Schema.
Action:
1. Check if system.aq$_internet_agent_privs exist.
SQL> conn / as sysdba
SQL> desc system.aq$_internet_agent_privs
2. Make sure that the default tablespace of SYSTEM user is properly set to SYSTEM tablespace.
SQL> select default_tablespace from dba_users where username=’SYSTEM’;
DEFAULT_TABLESPACE
——————————
SYSTEM
Run the below Script as sysdba user.
SQL> conn / as sysdba
SQL> @$ORACLE_HOME/rdbms/admin/catqueue.sql
SQL> exit
3. Then execute the DROP USER command again.
4. SQL> Drop user Username;
User Dropped
Table system.aq$_internet_agent_privs is missing in "SYSTEM" Schema.
Action:
1. Check if system.aq$_internet_agent_privs exist.
SQL> conn / as sysdba
SQL> desc system.aq$_internet_agent_privs
2. Make sure that the default tablespace of SYSTEM user is properly set to SYSTEM tablespace.
SQL> select default_tablespace from dba_users where username=’SYSTEM’;
DEFAULT_TABLESPACE
——————————
SYSTEM
Run the below Script as sysdba user.
SQL> conn / as sysdba
SQL> @$ORACLE_HOME/rdbms/admin/catqueue.sql
SQL> exit
3. Then execute the DROP USER command again.
4. SQL> Drop user Username;
User Dropped
Thank you Leslie ...:)
ReplyDelete