Calls
-
PROCEDURE DBMS_STORAGE_MAP.MAP_ELEMENT(elemnameIN VARCHAR2,cascadeIN BOOLEAN,dictionary_updateIN BOOLEAN DEFAULT TRUE); Builds mapping information for elemname. If cascade, all elements with the elemname I/O stack directed acyclic graph (DAG) are mapped. If dictionary_update, mapping information in the data dictionary is also updated.
-
PROCEDURE DBMS_STORAGE_MAP.MAP_FILE(filenameIN VARCHAR2,filetypeIN VARCHAR2,cascadeIN BOOLEAN,max_num_fileextentIN NUMBER DEFAULT 100,dictionary_updateIN BOOLEAN DEFAULT TRUE); Builds mapping information for filename of filetype, which is DATAFILE, SPFILE, TEMPFILE, CONTROLFILE, LOGFILE, or ARCHIVEFILE. If cascade, all elements within the filename I/O stack DAG are mapped. max_num_fileextent is the maximum number of file extents to be mapped. If dictionary_update, mapping information in the data dictionary is also updated.
-
PROCEDURE DBMS_STORAGE_MAP.MAP_OBJECTS(objnameIN VARCHAR2,ownerIN VARCHAR2,objtypeIN VARCHAR2); Builds mapping information for owner.objname of objtype.
-
PROCEDURE DBMS_STORAGE_MAP.MAP_ALL(max_num_fileextIN NUMBER DEFAULT 100,dictionary_updateIN BOOLEAN DEFAULT TRUE); Builds mapping information for all type of Oracle files except archive logs. max_num_fileext is the maximum number of file extents to be mapped. If dictionary_update, mapping information in the data dictionary is also updated.
-
PROCEDURE DBMS_STORAGE_MAP.DROP_ELEMENT(elemnameIN VARCHAR2,cascadeIN BOOLEAN,dictionary_updateIN BOOLEAN ...