ORA-39064: unable to write to the log file
Answer / guest
Cause: Errors were detecting while writing to the log file.
Subsequent messages will detail the problems.
Action: Fix the problems outlined in the secondary messages.
Please add more information about this Error
| Is This Answer Correct ? | 0 Yes | 7 No |
ORA-02814: Unable to get shared memory
ORA-06309: IPA: No message queue available
LPX-00201: unknown encoding "~s"
ORA-39500: failed to notify CRS of a Startup/Shutdown event for database "string", instance "string" (ignored)
ORA-13016: specified topology [string] is invalid
QSM-01115: rollup took place on a column with a window function
ORA-25144: invalid option for CREATE TABLESPACE with TEMPORARY contents
ORA-12560: TNS:protocol adapter error
PROC-00012: Out of heap memory.
ORA-31212: DBMS_LDAP: PL/SQL - Invalid LDAP mod_array.
RMAN-06577: FROM TAG option may only be used with datafilecopies
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...