oracle sql*plus - 删除当前用户的所有对象
--ctr1.sql
--用于删除当前用户的所有对象(包括约束条件,表空间,视图,函数,包,存储过程,数字序列,数据库链接)
--use for drop all objects in current user;
--删除某个用户下的对象set heading off;
set feedback off;
spool f:/dropobj.sql;
prompt --Drop constraint
select 'alter table '||table_name||' drop c
翻译
2010-10-23 15:43:00 ·
463 阅读 ·
0 评论