| General Information |
| Library Note |
Morgan's Library Page Header
|
| Purpose |
Undocumented but appears related to Transportable Tablespaces for tablespaces containing binary XML data. |
| AUTHID |
DEFINER |
| Dependencies |
|
| Documented |
No |
| First Available |
12.2 |
| Security Model |
Owned by XDB with EXECUTE granted to PUBLIC |
| Source |
{ORACLE_HOME}/rdbms/admin/prvtxdb0.plb |
| Subprograms |
|
| |
| GETDEFAULTGUID |
| Returns a GUID for transportable tablespaces |
dbms_csx_int2.getDefaultGUID RETURN RAW; |
SELECT dbms_csx_int2.getDefaultGUID;
GETDEFAULTGUID
-------------------------------
F7CCAF89AF7AFE90531C284664A10E |
| |
| GETTABLEGUID |
| Returns a GUID for a named table ... at least in theory as the example at right returns NULL |
dbms_csx_int2.getTableGUID(
owner_in IN VARCHAR2,
table_name_in IN VARCHAR2)
RETURN RAW; |
SELECT dbms_csx_int2.getTableGUID('SCOTT', 'EMP');
DBMS_CSX_INT2.GETTABLEGUID('SCOTT', 'EMP')
-------------------------------------------
|