ORA-31068: updateXML expected data format [string] instead
of [string]
Answer / guest
Cause: An attempt was made to use updateXML to update data
with a node of the incorrect type. Text and attribute nodes
must be updated with string data, whereas element nodes must
be updated with XMLType data.
Action: Use CREATEXML or getStringVal to coerce the new data
to the proper format.
Please add more information about this Error
Is This Answer Correct ? | 0 Yes | 0 No |
LPX-00011: In line ~1u of ~2s [general entity ~3S]:
ORA-38958: Source platform string is in different byte order than target platform string
TNS-04008: %-25s | string
PCC-02319: expression type does not match usage
TNS-00272: Navigator
DRG-11837: Reauthorization Required
ORA-36639: (XSDUNION18) UNIQUE cannot be applied to this concat dimension because leaves workspace object and workspace object share the value number.
PCC-01016: "N" character literals not supported in embedded PL/SQL
ORA-24314: service handle not initialized
ORA-29265: HTTP header not found
ORA-12212: TNS:incomplete PREFERRED_CMANAGERS binding in TNSNAV.ORA
Hi guys, I have four tables those are emp,dept,eliminate and uneliminate. i wrote small cursor..when i run, it display one error (ORA-01403 nodata found)... The query is: Declare cursor c1 is select e.ename emp_name from emp e,dept d where e.deptno=d.deptno group by deptno; r1 c1%rowtype; test_emp varchar2(200); begin for r1 in c1 loop begin select eliminate_emp into test_emp from eliminate t,uneliminate ut where t.number=ut.number and t.deptno=e.deptno and rownum<1; end; dbms_output.put_line(r1.emp_name); end loop; end; Thanks...