11th June 2010
in
OraERR, Tips
When updated table, found error:
ORA-08102: index key not found, obj# 116528, file 96, block 8795 (2)
This problem I had resolved by rebuild indexes (ORA-08102 on index objects). But today I can not use this solution:
[...]
No Comments
27th April 2010
in
OraERR
You are trying to delete a record, but one or more child records were found, preventing the delete.
A (parent / child) relationship between 2 tables are defined by a foreign key constraint.
eg:
CREATE TABLE PARENT
(
ID [...]
3 Comments
18th January 2010
in
OraERR
“ORA-00980: synonym translation is no longer valid” is a common error encountered in a development environment. This can happen for many reasons. Some of them are
1. You created a synonym on non-existing obje[...]
Tags: Find Invalid Synonyms
1 Comment
13th January 2010
in
OraERR
ORA-01940: Cannot drop a user that is currently connected
Problem Description:
SQL> drop user strmadmin cascade;
drop user strmadmin cascade
*
ERROR at line 1:
ORA-01940: cannot drop a user that is currently connected[...]
Tags: ORA-01940: Cannot drop a user that is currently connected
No Comments