I am doing multimaster adv. replication in 9.2 on win2000 server using API and everything went well (I have 3 groups and 6 tables) till this command:

Note: DOEPERSONNEL table has a BLOB column.

SQL> ed
Wrote file afiedt.buf

1 begin
2 dbms_repcat.generate_replication_support(sname=>'"DOEOWNER"',
3 oname=>'"DOEPERSONNEL"',
4 type=>'TABLE',
5 min_communication=>TRUE);
6* end;
SQL> /
begin
*
ERROR at line 1:
ORA-23308: object DOEOWNER.DOEPERSONNEL does not exist or is invalid
ORA-06512: at "SYS.DBMS_SYS_ERROR", line 95
ORA-06512: at "SYS.DBMS_REPCAT_MAS", line 2906
ORA-06512: at "SYS.DBMS_REPCAT", line 766
ORA-06512: at line 2


I know that in 9.2 we can replicate LOBs and I can describe the table as repadmin user.

Did anyone have this problem? Thanks.