ORA-19593: datafile number string already included as string
Answer / guest
Cause: This datafile is already specified for inclusion in
this backup or restore conversation. A backup or restore
conversation may process only a single instance of a datafile.
Action: No action required - the conversation is still
active, and more files can be specified.
Please add more information about this Error
| Is This Answer Correct ? | 0 Yes | 0 No |
NNL-00509: set|show cache_checkpoint_interval [<seconds>] [<server_list>] : set|show the server's cache checkpoint interval
ORA-01121: cannot rename database file string - file is in use or recovery
ORA-24097: Invalid value string, string should be non-negative
ORA-03248: Too much of segment creation activity during migration
PCB-00301: Use of non-ANSI function is an Oracle extension
PCC-00040: Unable to open listing file "string"
RMAN-06901: WARNING: disabling update of the V$RMAN_STATUS and V$RMAN_OUTPUT rows
PCC-00081: Scale specification not allowed for given datatype
NNL-00513: Shows or sets the server's auto-refresh failure retry interval
ORA-16586: Could not edit database property through instance.
RMAN-06169: could not read file header for datafile string error reason string
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...