Which has the higher priority in your organization: Deploying a new database or securing the ones you already have?
Looking for a website, and resources, dedicated solely to securing Oracle databases? Check out DBSecWorx.
Purpose
Undocumented
AUTHID
DEFINER
Dependencies
DBMS_DATAPUMP
KUPCC
KUPP$PROC
KUPC$QUEUE
KUPF$FILE
KUPV$FT_INT
KUPC$QUE_INT
KUPM$MCP
KUPW$WORKER
KUPC$_MESSAGE
Documented
No
Exceptions
Error Code
Reason
ORA-39078
Unable to dequeue message for agent from queue ""
ORA-39097
Data Pump job encountered unexpected error -942
First Available
Not known
Security Model
Owned by SYS with EXECUTE granted to the EXECUTE_CATALOG_ROLE role.
kupc$queue_int.create_queues(
job_name IN VARCHAR2,
job_owner IN VARCHAR2,
que_tabnum IN BINARY_INTEGER,
control_queue OUT VARCHAR2,
status_queue OUT VARCHAR2);
DECLARE
retVal NUMBER;
BEGIN
retVal := kupc$queue_int.get_status_msg_count;
dbms_output.put_line(retVal);
END;
/
DECLARE
*
ERROR at line 1:
ORA-39097: Data Pump job encountered unexpected error -942
ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
ORA-06512: at "SYS.KUPC$QUE_INT", line 2089
ORA-00942: table or view does not exist
ORA-06512: at "SYS.KUPC$QUE_INT", line 2064
ORA-06512: at line 1
ORA-06512: at "SYS.KUPC$QUEUE_INT", line 350
ORA-06512: at line 4
DECLARE
retVal NUMBER;
BEGIN
retVal := kupc$queue_int.get_subscriber_count;
dbms_output.put_line(retVal);
END;
/
DECLARE
*
ERROR at line 1:
ORA-39097: Data Pump job encountered unexpected error -942
ORA-06512: at "SYS.DBMS_SYS_ERROR", line 86
ORA-06512: at "SYS.KUPC$QUE_INT", line 2115
ORA-00942: table or view does not exist
ORA-06512: at "SYS.KUPC$QUE_INT", line 2102
ORA-06512: at line 1
ORA-06512: at "SYS.KUPC$QUEUE_INT", line 381
ORA-06512: at line 4
kupc$queue_int.receive(timeout IN NUMBER) RETURN sys.kupc$_message;
DECLARE
retVal sys.kupc$_message;
BEGIN
retVal := kupc$queue_int.receive(1);
END;
/
DECLARE
*
ERROR at line 1:
ORA-39078: unable to dequeue message for agent from queue ""
ORA-06512: at "SYS.KUPC$QUEUE_INT", line 608
ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
ORA-06512: at "SYS.KUPC$QUE_INT", line 710
ORA-00931: missing identifier
ORA-06512: at "SYS.DBMS_AQ", line 819
ORA-06512: at "SYS.KUPC$QUE_INT", line 649
ORA-06512: at "SYS.KUPC$QUE_INT", line 2279
ORA-06512: at line 1
ORA-06512: at "SYS.KUPC$QUEUE_INT", line 597
ORA-06512: at line 4
kupc$queue_int.set_debug(debug_flags IN BINARY_INTEGER);
exec kupc$queue_int.set_debug(1);
BEGIN kupc$queue_int.set_debug(1); END;
*
ERROR at line 1:
ORA-06550: line 1, column 7:
PLS-00904: insufficient privilege to access object SET_DEBUG
kupc$queue_int.tranceive(
message IN OBJECT sys.kupc$_message,
job_handle IN NUMBER
timeout IN NUMBER
priority IN NUMBER
recipient IN VARCHAR2)
RETURN sys.kupc$_message;