ORA-22911: duplicate storage specification for the nested
table item
Answer / guest
Cause: The storage clause is specified more than once for
the NESTED TABLE column.
Action: Remove the duplicate storage specification.
Please add more information about this Error
| Is This Answer Correct ? | 0 Yes | 1 No |
ORA-13359: extent does not have an area
PCC-00023: Unable to log off from ORACLE
DRG-11729: phrase does not have any narrower terms of this type
ORA-09805: conversion of category number to string failed.
ORA-06742: TLI Driver: cannot alloc t_bind
ORA-24046: protocol attribute reserved for future use
ORA-38601: FI Not enough memory for frequent itemset counting: string
ORA-13222: failed to compute supercell for geometry in string
IMG-00604: unable to access destination image data
ORA-02054: transaction string in-doubt
ORA-00361: cannot remove last log member string for group string
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...