vote up 0 vote down star

How can I drop all user tables in oracle?

I have problem with constraints. When I disable all it is still no possible.

flag

3 Answers

vote up 3 vote down check
BEGIN
   FOR cur_rec IN (SELECT object_name, object_type
                     FROM user_objects
                    WHERE object_type IN
                             ('TABLE',
                              'VIEW',
                              'PACKAGE',
                              'PROCEDURE',
                              'FUNCTION',
                              'SEQUENCE'
                             ))
   LOOP
      BEGIN
         IF cur_rec.object_type = 'TABLE'
         THEN
            EXECUTE IMMEDIATE    'DROP '
                              || cur_rec.object_type
                              || ' "'
                              || cur_rec.object_name
                              || '" CASCADE CONSTRAINTS';
         ELSE
            EXECUTE IMMEDIATE    'DROP '
                              || cur_rec.object_type
                              || ' "'
                              || cur_rec.object_name
                              || '"';
         END IF;
      EXCEPTION
         WHEN OTHERS
         THEN
            DBMS_OUTPUT.put_line (   'FAILED: DROP '
                                  || cur_rec.object_type
                                  || ' "'
                                  || cur_rec.object_name
                                  || '"'
                                 );
      END;
   END LOOP;
END;
/
link|flag
thanks a lot :) – szaman Nov 6 at 21:15
it depends on what's you intended to do. you can also use drop user cascade but you need re-create the user. – Henry Gao Nov 6 at 21:16
vote up 1 vote down

The simplest way is to drop the user that owns the objects with the cascade command.

DROP USER username CASCADE
link|flag
vote up 0 vote down

I have another problem. How can I execute truncate table on all user tables? There is the same problem with constraints.

link|flag
Please ask this as a new question. – APC Nov 7 at 18:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.