ORA-39088: file name cannot contain a path specification
Answer / guest
Cause: The name of a dump file, log file, or sql file
contains a path specification.
Action: Use the name of a directory object to indicate where
the file should be stored.
Please add more information about this Error
| Is This Answer Correct ? | 1 Yes | 0 No |
ORA-25007: functions or methods not allowed in WHEN clause
DRG-10831: can not insert into feedback table string
ORA-29305: cannot point-in-time recover tablespace 'string'
ORA-00268: specified log file does not exist 'string'
ORA-31621: error creating master process
SQL-02128: Sessions still exist, not logged off
PLS-00732: Illegal overload of ellipsis in formal parameter list
ORA-28653: tables must both be index-organized
RMAN-08004: full resync complete
TNS-01101: Could not find service name string
PCB-00315: DECLARE TABLE is an Oracle extension
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...