Oracle AMGT$DATAPUMP
Version 26ai

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

Oracle Database 26ai will be available on generic Linux platforms in January and soon on AIX and Windows
Purpose Internal DataPump support package for Audit Management
AUTHID DEFINER
Dependencies
DAM_CLEANUP_EVENTS$ DBMS_AUDIT_MGMT DBMS_STANDARD
DAM_CLEANUP_JOBS$ DBMS_AUDIT_MGMT_LIB KU$_JOBDESC
DAM_CONFIG_PARAM$ DBMS_DATAPUMP KU$_STATUS
DBMS_ASSERT DBMS_PDB_EXEC_SQL  
Documented No
First Available 12.1
Security Model Owned by SYS with EXECUTE granted to the EXECUTE_CATALOG_ROLE role
Source {ORACLE_HOME}/rdbms/admin/dbmsamgt.sql
Subprograms
 
INSTANCE_CALLOUT_IMP
Undocumented amgt$datapump.instance_callout_imp(
obj_name   IN  VARCHAR2,
obj_schema IN  VARCHAR2,
obj_type   IN  NUMBER,
prepost    IN  BINARY_INTEGER,
action     OUT VARCHAR2,
alt_name   OUT VARCHAR2);
conn sys@pdbdev as sysdba

CREATE TABLE test (
testcol DATE);

SELECT type#
FROM obj$
WHERE name = 'TEST';

DECLARE
 actout   v$session.action%TYPE;
 anameout obj$.name%TYPE;
BEGIN
  amgt$datapump.instance_callout_imp('TEST', 'SYS', 2, 0, actout, anameout);
  dbms_output.put_line('Action: ' || actout);
  dbms_output.put_line('Name: ' || anameout);
END;
/

Related Topics
Built-in Functions
Built-in Packages
Database Security
DataPump API
DBMS_PDB_EXEC_SQL
DBMS_DATAPUMP
DBMS_DATAPUMP_INT
DBMS_DATAPUMP_UTL
KUPD$DATA_INT
OLS$DATAPUMP
PSTDY_DATAPUMP_SUPPORT
SQLFW$DATAPUMP
TSDP_DATAPUMP
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