Penso che semplificando la query tu abbia rimosso la vera causa del bug :-)
Che versione di Oracle stai usando? Oracle 10g ( 10.2.0.1.0 ) fornisce:
create table parts (ptno number , ptnm number , catcd number);
create table CATEGORIES (catcd number);
select PTNO,PTNM,CATCD from PARTS
left join CATEGORIES on (CATEGORIES.CATCD=PARTS.CATCD);
Ottengo ORA-00918:colonna definita in modo ambiguo