Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4080576
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T17:56:52+00:00 2026-05-20T17:56:52+00:00

I want to drop certain tables in a tablespace that has common name appended

  • 0

I want to drop certain tables in a tablespace that has common name appended to end of each table for an example:

TABLE1_NAME1_COMMON
TABLE2_NAME2_COMMON
TABLE3_NAME3_COMMON

I heard about Oracle functions but I’m not familiar much with those so I’m expecting some helping hand.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T17:56:52+00:00Added an answer on May 20, 2026 at 5:56 pm

    If you’re completely sure what you’re doing, ie, if you’re sure that you don’t accidentally drop a table that you don’t want to drop, you can do a:

    set serveroutput on size 1000000
    
    begin
    for r in (
    
      select table_name 
        from user_tables 
       where table_name like '%\_COMMON' escape '\')
    
    loop
    
      execute immediate 'drop table ' || r.table_name;
    
    end loop;
    exception when others then
       dbms_output.put_line(sqlerrm);
    end;
    /
    

    Edit:

    1. Changed Now selecting from user_tables instead of dba_tables as it seems more safe to do.
    2. Added set serveroutput on in order for dbms_output.put_line to be printed
    3. Added begin .. exception .. end in order for errors to be shown.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to confirm whether there is a certain table. When create a table,
I need to have a function that increments the certain ID in a table
What I want is that the text box is only accessible if a certain
I want to create an application that drops certain elements on other elements, using
Ok so I want a drop down select form that when selected on a
I have to tables I want to map to each other. I want to
I want to drop a now supposedly redundant file in SQL Server (2005), but
I want to drop all the schemas in a mysql db, and I don't
I have a TcxDBColorCombobox and I want the drop down to not include the
There are many security reasons why one would want to drop an HTTP connection

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.