ORA-07404: sfareq: Timeout occurred waiting for request to
complete.
Answer / guest
Cause: The master database writer timed out waiting for a
write or close to complete. One of the database writers may
have stopped running.
Action: Check all database writer trace files. Shut down the
database and try to warm start.
Please add more information about this Error
| Is This Answer Correct ? | 0 Yes | 0 No |
ORA-13825: missing SQL statement text for create SQL profile
ORA-01487: packed decimal number too large for supplied buffer
PLS-00646: MAP or ORDER method must be defined in the root of the subtype hierarchy
ORA-12707: error while getting create database NLS parameter string
ORA-01111: name for data file string is unknown - rename to correct file
ORA-16811: apply instance not recorded by the Data Guard broker
ORA-30736: objects in a table or view hierarchy have to be in the same schema
TNS-12664: Services required by server not available on the client
ORA-07226: rtneco: unable to get terminal mode.
DRG-51028: unexpected error in fuzzy match expansion: %(1)
NNC-00408: name "string" exists but desired data does not
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...