Skip to content

Instantly share code, notes, and snippets.

@SmiddyPence
Created March 10, 2014 15:37
Show Gist options
  • Save SmiddyPence/9467326 to your computer and use it in GitHub Desktop.
Save SmiddyPence/9467326 to your computer and use it in GitHub Desktop.
Oracle Drop All Objects
select 'drop '||object_type||' '|| object_name|| DECODE(OBJECT_TYPE,'TABLE',' CASCADE CONSTRAINTS;',';') from user_objects
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment