ORA-00942: table or view does not exist [message #336670] |
Mon, 28 July 2008 10:57 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
umesh049
Messages: 4 Registered: July 2008
|
Junior Member |
|
|
Hi,
I have two schema on the two servers for replication replication is working fine.
i export one schema to another so all the tables exists at both the sites.
I am adding objects in the replication group using oracle enterprise manager
console.
some of the tables added fine.
but some gives me error like.
ORA-23309: object UMESH.PRODUCT_MASTER of type TABLE exists
before adding this objects in the group i do like
SQL> SELECT oname FROM DBA_REPOBJECT ;
ONAME
------------------------------
AC_ACCOUNT
AC_ACCOUNT$RP
AC_ACCOUNT$RP
AC_ACCOUNT_MASTER
AC_ACCOUNT_MASTER$RP
AC_ACCOUNT_MASTER$RP
6 rows selected.
at both the sites.
when i add product_master in the group then entries becomes like
SQL> SELECT oname FROM DBA_REPOBJECT ;
ONAME
------------------------------
AC_ACCOUNT
AC_ACCOUNT$RP
AC_ACCOUNT$RP
AC_ACCOUNT_MASTER
AC_ACCOUNT_MASTER$RP
AC_ACCOUNT_MASTER$RP
PRODUCT_MASTER
7 rows selected.
but with the error in
and when generate replication support.
SQL> select status,request,message,oname from dba_repcatlog;
STATUS REQUEST
-------------- -----------------------------
MESSAGE
--------------------------------------------------------------------------------
ONAME
------------------------------
ERROR CREATE_MASTER_REPOBJECT
ORA-23309: object UMESH.PRODUCT_MASTER of type TABLE exists
PRODUCT_MASTER
ERROR CREATE_MASTER_REPOBJECT
ORA-23309: object UMESH.PRODUCT_MASTER of type TABLE exists
PRODUCT_MASTER
STATUS REQUEST
-------------- -----------------------------
MESSAGE
--------------------------------------------------------------------------------
ONAME
------------------------------
ERROR GENERATE_INTERNAL_PKG_SUPPORT
ORA-23308: object UMESH.PRODUCT_MASTER does not exist or is invalid
PRODUCT_MASTER
ERROR GENERATE_INTERNAL_PKG_SUPPORT
ORA-23308: object UMESH.PRODUCT_MASTER does not exist or is invalid
STATUS REQUEST
-------------- -----------------------------
MESSAGE
--------------------------------------------------------------------------------
ONAME
------------------------------
PRODUCT_MASTER
ERROR GENERATE_INTERNAL_PKG_SUPPORT
ORA-23308: object UMESH.PRODUCT_MASTER does not exist or is invalid
PRODUCT_MASTER
OR
SOME TIMES I GOT ERROR LIKE
ORA-00942: table or view does not exist
when use CREATE_MASTER_REPOBJECT command to create object at
master definition site while the the table exists at the master site.
but in the same situation other objects are working fine.
i am fed up with this error.
any help will be appreciated.
Thanks
Umesh
|
|
|
|
|
Re: ORA-00942: table or view does not exist [message #336785 is a reply to message #336686] |
Tue, 29 July 2008 00:18 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
umesh049
Messages: 4 Registered: July 2008
|
Junior Member |
|
|
SQL> SELECT ONAME,STATUS,TYPE FROM DBA_REPOBJECT WHERE SNAME='UMESH';
ONAME STATUS TYPE
------------------------------ ---------- ----------------
AC_ACCOUNT VALID TABLE
AC_ACCOUNT$RP VALID PACKAGE
AC_ACCOUNT$RP VALID PACKAGE BODY
PRODUCT_MASTER VALID TABLE
PRODUCT_MASTER$RL VALID PACKAGE
PRODUCT_MASTER$RL VALID PACKAGE BODY
PRODUCT_MASTER$RP VALID PACKAGE
PRODUCT_MASTER$RP VALID PACKAGE BODY
this is on master definition site version
SQL> select * from v$version;
BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Production
TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
this is on another master site.
SQL> select * from v$version;
BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Prod
PL/SQL Release 10.1.0.2.0 - Production
CORE 10.1.0.2.0 Production
TNS for 32-bit Windows: Version 10.1.0.2.0 - Production
NLSRTL Version 10.1.0.2.0 - Production
One more thing i made a new table
by
create table product_master_bkup as select * from product_master ;
and then replicate product_master_bkup table which worked
fine without any error.
[Updated on: Tue, 29 July 2008 02:40] Report message to a moderator
|
|
|
|
Re: ORA-00942: table or view does not exist [message #336973 is a reply to message #336913] |
Tue, 29 July 2008 08:43 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
umesh049
Messages: 4 Registered: July 2008
|
Junior Member |
|
|
No its not as you understand
I am using multimaster replication this code i use to create
one table from another.
Actually my problem is my some tables are get replicated but some
give me error like that.
So i made a new table from probuct_master using this query new
tables have every thing same data, structure of table except
constraints and my problem solved.
but i can't understand does constraints creates some problem
in multimaster replication.
Thanks for reply
|
|
|
|
|
|