LPX-00208: unknown DTD keyword "~s"
Answer / guest
Cause: An unknown keyword was found in the DTD.
Action: Use a proper keyword.
Please add more information about this Error
| Is This Answer Correct ? | 0 Yes | 0 No |
ORA-02050: transaction string rolled back, some remote DBs may be in-doubt
TNS-01162: Syntax error in the address resolved from the spawn alias: string
ORA-38103: Invalid column in the UPDATE SET Clause: string
ORA-00059: maximum number of DB_FILES exceeded
DGM-16951: Can not proceed to failover.
ORA-13605: The specified task or object string does not exist for the current user.
ORA-15021: parameter "string" is not valid in string instance
LPX-00244: invalid use of less-than ('<') character (use <)
ORA-00352: all logs for thread string need to be archived - cannot enable
TNS-00242: Connection Manager: Tracing is now ON
RMAN-06405: database closed
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...