Hi Barbaro
Well then oracle says it can’t find your view – then your telling Oracle to drop an unknowing materialized view.
Try this:
Connect to the database as SYSDBA – or as SYSTEM
select obj.owner, obj.object_name
from dba_objects obj, sys.obj$ s
where s.type# = 42
and obj.object_id = s.obj#;
You now receive a list of materialized views.
Please show the DROP syntax and show the above result.
Regards
Allan
Icq: 346225948