I have the procedure below:
PROCEDURE GRAVA_(P_IMEI_DISPOSITIVO IN NVARCHAR2,
P LONG,
P_DET LONG,
RETORNO_OPERACAO OUT VARCHAR2)
In the P and P_DET parameters I get strings with data in XML, and inside the procedure convert to XML. As below:
PL_MZ_CAB_XML SYS.XMLTYPE;
PL_MZ_CAB_XML := SYS.XMLTYPE.CREATEXML(P);
When I get a file larger than 32,000 Bytes Oracle is returning the message below:
Ora-01460: Replication not implemented or not resolved.
What can I do to resolve this? Do I have to change what kind of my parameter will be?