Skip to content

Instantly share code, notes, and snippets.

@jirkapenzes
Created May 5, 2014 11:56
Show Gist options
  • Save jirkapenzes/d5c1b1659c6ab7952449 to your computer and use it in GitHub Desktop.
Save jirkapenzes/d5c1b1659c6ab7952449 to your computer and use it in GitHub Desktop.
Delete all tables, views, packages, procedures, functions and sequences in your Oracle schema.
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;
@pauarbatjubinya
Copy link

thx man

@Leidmer
Copy link

Leidmer commented Apr 12, 2019

thank you kind sir

@MojtabaRajabi
Copy link

Thanks for answer

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment