Oracle 存儲過程---清除用戶下全部的表

create or replace procedure drop_all_tables is
begin
  declare
    cursor c_ts is
      select * from user_tables;
    cursor c_cs is
      select * from user_constraints where constraint_type = 'R';
    v_sql varchar2(1000 );
  begin
    --刪除外鍵約束
    for c_c in c_cs loop
      v_sql := 'alter table ' || c_c.table_name || ' drop constraint ' ||
               c_c.constraint_name;
      execute immediate v_sql;
    end loop ;
    --刪除表
    for c_t in c_ts loop
      v_sql := 'drop table ' || c_t.table_name;
      execute immediate v_sql;
    end loop ;
  exception
    when others then
      DBMS_OUTPUT.put_line( 'sqlcode : ' || sqlcode );
      DBMS_OUTPUT.put_line( 'sqlerrm : ' || sqlerrm );
  end;
end drop_all_tables;
相關文章
相關標籤/搜索