2
I have the trial 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 receive strings with XML data, and inside the Procedure I convert to XML. As below:
PL_MZ_CAB_XML SYS.XMLTYPE;
PL_MZ_CAB_XML := SYS.XMLTYPE.CREATEXML(P);
When I get file bigger than 32.000 Bytes Oracle is returning me the message below:
Ora-01460: Unsolvable or unsolvable conversion requested.
What can I do to fix this? I have to change the type of my parameter will be?