Mar 3, 2003 #1 Barbaro Programmer Jan 23, 2002 9 CL Keep getting ora -12003 mesagges. Syntax is ok .. Please help..
Mar 3, 2003 #2 AOLEURO Programmer Dec 16, 2002 181 DK 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 Upvote 0 Downvote
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