DBMS_METADAT.PUT results in LPX-00210 / ORA-06502
Hallo,
I am trying to enable ROWDEPENDENCIES for all tables of a schema by a help of a self written package wich uses DBMS_METADATA.
I am able to get the DDL of the table in a clob variable and manipulate that ddl to rename the table.
But when I try to generate the table with the overloaded funtion DBMS_METADATA.PUT i get.
I searched in the documentation and the examples from Oracle, searched the internet and so on but didn't find anything that helped.
Database Version is Oracle XE
Here is the code of interest:
DECLARE
doc CLOB;
I am trying to enable ROWDEPENDENCIES for all tables of a schema by a help of a self written package wich uses DBMS_METADATA.
I am able to get the DDL of the table in a clob variable and manipulate that ddl to rename the table.
But when I try to generate the table with the overloaded funtion DBMS_METADATA.PUT i get.
I searched in the documentation and the examples from Oracle, searched the internet and so on but didn't find anything that helped.
Database Version is Oracle XE
Here is the code of interest:
DECLARE
doc CLOB;
0