Skip to content

Instantly share code, notes, and snippets.

@Codes-Lab
Last active August 5, 2025 07:42
Show Gist options
  • Select an option

  • Save Codes-Lab/a3bd609e00f122ec502787034ab75ddc to your computer and use it in GitHub Desktop.

Select an option

Save Codes-Lab/a3bd609e00f122ec502787034ab75ddc to your computer and use it in GitHub Desktop.
Delete all tables, views, packages, procedures, functions, sequences, MaterializerView and index 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;
/
BEGIN
FOR rec IN (SELECT mview_name FROM user_mviews) LOOP
EXECUTE IMMEDIATE 'DROP MATERIALIZED VIEW ' || rec.mview_name;
END LOOP;
END;
/
COMMIT;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment