RMAN-08102: channel string: located backup piece: string
Answer / guest
Cause: informational message
Action: no action required
Please add more information about this Error
| Is This Answer Correct ? | 0 Yes | 0 No |
ORA-01902: SEGMENT keyword expected
ORA-09842: soacon: Archmon unable to create named pipe.
ORA-01351: tablespace given for Logminer dictionary does not exist
PCC-02431: Expecting an expression of type external LOB (BFILE)
ORA-08322: scnmin: open/convert of bias lock failed
ORA-01774: Dump undo option specified more than once
ORA-36682: (XSDPART20) Partition name string appears twice.
NZE-29190: Multiple entries in OID
ORA-13854: Tracing for service(module/action) string on instance string is not enabled
SQL*Loader-00811: error dropping external table: string
ORA-14029: GLOBAL partitioned index must be prefixed
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...