Home > Oracle Tips > Oracle Database Administrator > Dropping objects without ORA-00942 errors
Oracle Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

ORACLE DATABASE ADMINISTRATOR

Dropping objects without ORA-00942 errors


Rastislav Ciganek
08.31.2004
Rating: -2.69- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


This procedure enables to drop any object in an Oracle database if you have the rights for it. It will give you a clean spool file -- no ORA-00942 messages -- when installing or dropping objects where you are not sure if they exist or not. This produces no error messages even if the object does not exist. It may be useful when looking for any other errors in big spool files after installing hundreds of tables, views, packages, etc. The script has been tested on v. 8.1.7.
create or replace procedure dropObject (ownerName in varchar2, objectName in varchar2) is 

  
  cursor C1 is 
  select 'DROP '||o.object_type||' "' || o.owner || '"."' || o.object_name ||'"' 
    from sys.dba_objects o 
   where o.owner       = ownerName 
     and o.object_name = objectName ; 

  DDL_CURSOR integer; 
  ddl_statement varchar2(500); 

BEGIN 

 DDL_CURSOR := dbms_sql.open_cursor; 
 OPEN C1; 

 LOOP 

   FETCH C1 INTO ddl_statement; 
   EXIT WHEN C1%NOTFOUND; 
   dbms_sql.parse(DDL_CURSOR, ddl_statement, dbms_sql.native); 
     
 END LOOP; 

 dbms_sql.close_cursor(DDL_CURSOR); 
 CLOSE C1; 

END; 

Rate this Tip
To rate tips, you must be a member of SearchOracle.com.
Register now to start rating these tips. Log in if you are already a member.


Submit a Tip




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


RELATED CONTENT
Oracle Database Administrator
What is the difference between a database engineer, architect and administrator?
Import on one table from dump file
Error during RMAN backup
Can I drop a column in SYS schema?
STATSPACK tool: transaction vs. execution measurement
Should I port from Microsoft Access?
Installing multiple Oracle homes
How can I find statistics on total memory usage and database connections?
Modifying SYS password in a RAC environment
How to create Datafiles in a Data Guard (10g) environment

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.

HomeNewsTopicsTipsAsk the ExpertsMultimediaWhite PapersProductsBlogs
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides enterprise IT professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective IT purchase decisions and managing their organizations' IT projects - with its network of technology-specific Web sites, events and magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Reprints  |  Site Map




All Rights Reserved, Copyright 2003 - 2008, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts