NNL-00582: dump_alias: dump aliases in the domain or region
to LDAP
Answer / guest
Cause: Control program help text.
Action: None.
Please add more information about this Error
| Is This Answer Correct ? | 0 Yes | 0 No |
ORA-36820: (XSLMINFO00) The LIMITMAPINFO function encountered an error while parsing the LIMITMAP.
IMP-00018: partial import of previous table completed: number rows imported
RMAN-06064: creating datafile fno=string name=string
CLSS-03202: out of sync with master: [string] [string] [string] [string]
DRG-11835: Requested Range Not Satisfiable
ORA-31216: DBMS_LDAP: PL/SQL - Invalid LDAP rdn.
TNS-00513: Destination host unreachable
IMP-00091: Above error occurred on the following function and object: string. Remaining PL/SQL blocks for this object will be skipped.
ORA-09886: osnTXtt: translation error while expanding txipc@.trc.
ORA-01125: cannot disable media recovery - file string has online backup set
ORA-16216: Log stream sequence error
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...