does it make any damage to keep the name of the materialized view same as the master table??? does it make any confusion for the oracle whether to add the master table or the materialized view???

SQL> BEGIN
2 DBMS_REPCAT.CREATE_MVIEW_REPOBJECT (
3 gname => 'hamza_repg',
4 sname => 'hamza',
5 oname => 'donor',
6 type => 'SNAPSHOT',
7 min_communication => TRUE);
8 END;
9 /

PL/SQL procedure successfully completed.

SQL> BEGIN
2 DBMS_REFRESH.ADD (
3 name => 'mvadmin.hamza_refg',
4 list => 'hamza.donor',
5 lax => TRUE);
6 END;
7 /

PL/SQL procedure successfully completed.


>>>>>>>>since the name of the master table and this materialized view is same, is it the originating problem????

i kept the same names so as to use the same forms for both the master site and the materialized view site... i am using it but i cant use refresh group now...

is there any way out????

regards...