Oracle DBMS_SUM_RWEQ_EXPORT_INTERNAL
Version 26ai

General Information
Library Note Morgan's Library Page Header
The best Oracle News for FY2026

Oracle Database 26ai is now availble. If you haven't you downloaded already: Why?
Purpose Undocumented
AUTHID DEFINER
Dependencies
DBMS_LOB DBMS_SYSTEM SUM$
DBMS_STANDARD OBJ$ USER$
DBMS_SUM_RWEQ_EXPORT    
Documented No
First Available Not Known
Security Model Owned by SYS with no privileges granted
Source {ORACLE_HOME}/rdbms/admin/prvtxrmv.plb
 
I_CREATE_EXP
Undocumented

No doubt my choice to create an object and then reference it wasn't correct but it did prove the concept valid
dbms_sum_rweq_export_internal.i_create_exp(
objid     IN  NUMBER,
new_block OUT BINARY_INTEGER)
RETURN VARCHAR2;
CREATE TABLE zzyzx AS
SELECT * FROM dual;

Table created.

SELECT object_id
FROM dba_objects
WHERE object_name = 'ZZYZX';

OBJECT_ID
----------
    104982


DECLARE
 outVal BINARY_INTEGER;
 retVal VARCHAR2(128);
BEGIN
  retVal := dbms_sum_rweq_export_internal.i_create_exp(104982, outVal);
  dbms_output.put_line(outVal);
  dbms_output.put_line(retVal);
END;
/

PL/SQL procedure successfully completed.

Related Topics
Built-in Functions
Built-in Packages
DBMS_SUM_RWEQ_EXPORT
What's New In 21c
What's New In 26ai

Morgan's Library Page Footer
This site is maintained by Daniel Morgan. Last Updated: This site is protected by copyright and trademark laws under U.S. and International law. © 1998-2026 Daniel A. Morgan All Rights Reserved