Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Seems odd to me....(bug?)
1 select owner, object_name, object_type, status
2 from all_objects
3* where object_name='EMPLOYEE_ROLE'
SQL> /
OWNER OBJECT_NAME OBJECT_TYPESTATUS
SBC_GLOBAL EMPLOYEE_ROLE TABLEVALID
NET_SBC EMPLOYEE_ROLE SYNONYMVALID. ..when I did the sql in the original message I was connected as sbc_global...so the synonym could not be the problem.
..I've also confirmed that there are no triggers on the table.
I should also mention that this has happened before but since it was ONLY in test, I simply dropped the objects and recreated them.
I (without any evidence. .( i know...I know!!)) though it might have have something to do with data dictionary corruption or somehting so I exported the schema and placed it into a database that I have never had problems with. ....that did not solve it.
..I will try Mladen's suggestion next.
chris
-----Original Message-----
Sent: Friday, October 03, 2003 4:49 AM
To: Multiple recipients of list ORACLE-L
something other than a table?
Synonym that the inserter only has select on?
see what you can find in all_objects or all_tables
-----Original Message-----
To: Multiple recipients of list ORACLE-L
Sent: 10/2/2003 5:39 PM
Oracle EE 8.1.7.2
HP-UX 11
Can anyone explain this?
1* INSERT INTO EMPLOYEE_ROLE VALUES ('C', 'CSR',NULL) SQL> / INSERT INTO EMPLOYEE_ROLE VALUES ('C', 'CSR',NULL) *
ERROR at line 1:
ORA-00604: error occurred at recursive SQL level 1
ORA-00942: table or view does not exist
1* select count(*) from user_tables where table_name='EMPLOYEE_ROLE' SQL> / COUNT(*)
1
SQL> CREATE TABLE EMPLOYEE_ROLE AS SELECT * FROM USER_TABLES; CREATE TABLE EMPLOYEE_ROLE AS SELECT * FROM USER_TABLES *
ERROR at line 1:
ORA-00955: name is already used by an existing object
Any ideas?
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
<http://www.orafaq.net>
--
Author: Chris Stephens
INET: ChrisStephens_at_affina.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com
<http://www.fatcity.com>
San Diego, California -- Mailing list and web hosting services
The information contained in this communication, including attachments, is strictly
confidential and for the intended use of the addressee only; it may also contain
proprietary, price sensitive, or legally privileged information. Notice is hereby given that
any disclosure, distribution, dissemination, use, or copying of the information by anyone
other than the intended recipient is strictly prohibited and may be illegal. If you have
received this communication in error, please notify the sender immediately by reply e-mail,
delete this communication, and destroy all copies.
Corporate Systems, Inc. has taken reasonable precautions to ensure that any attachment to
this e-mail has been swept for viruses. We specifically disclaim all liability and will
accept no responsibility for any damage sustained as a result of software viruses and advise
you to carry out your own virus checks before opening any attachment.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author: Chris Stephens
INET: ChrisStephens_at_affina.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Fri Oct 03 2003 - 10:14:25 CDT