DRG-11005: invalid create index parameter string
Answer / guest
Cause: the supplied parameter string is not correct
Action: drop index and recreate index with correct parameters
Please add more information about this Error
| Is This Answer Correct ? | 0 Yes | 0 No |
ORA-07701: sksatln: internal exception: output buffer too small
ORA-01635: rollback segment #string specified not available
RMAN-06225: shuting down automatic instance string
ORA-16202: Skip procedure requested to replace statement
LSX-00253: branch is empty
ORA-31030: Unable to retrieve XML document
PLS-00528: The parameters to an ORDER function must have IN mode
ORA-01774: Dump undo option specified more than once
ORA-19585: premature end of volume on piece string
ORA-19711: cannot use reNormalizeAllFileNames while database is open
NZE-29243: the toolkit does not recognize the type of key being used
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...