码迷,mamicode.com
首页 > 数据库 > 详细

oracle 自动生存清库脚本

时间:2014-12-06 11:22:55      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:io   sp   on   文件   数据   bs   cti   nbsp   数据库   

在项目上为了搭建测试库,常常会遇到要清除现在的库,很是折腾,闲暇之余,写了一个脚本留作备用。

脚本如下:

select ‘--清表‘ from dual union all select ‘drop table ‘ ||a.TABLE_NAME ||‘‘||‘;‘ from  user_tables a union  all select ‘--清序列‘ from dual --清序列 union all select ‘drop sequence ‘|| a.sequence_name||‘‘  ||‘;‘ from user_sequences  a --清存储过程 union all select ‘--清存储过程‘ from dual union all select  ‘drop procedure  ‘|| a.object_name||‘‘  ||‘;‘  from user_procedures  a where a.object_type=‘PROCEDURE‘ --清包 union all select ‘--清包‘ from dual union all select distinct  ‘drop PACKAGE  ‘|| a.object_name||‘‘  ||‘;‘  from user_procedures  a where a.object_type=‘PACKAGE‘ union all select ‘--清自定义函数‘ from dual union all select ‘drop FUNCTION ‘|| a.object_name||‘‘  ||‘;‘   from user_procedures    a where a.object_type =‘FUNCTION‘

在pl/sql里面运行之后自动生存执行的命令复制之后,

新建一个 command window 窗口,把复制好的命令粘贴到窗口里面,直接运行就可以了。

最后执行下面的语句生成导库语句

--导入库

select ‘imp 用户名/密码@数据库 file=‘||‘dmp文件‘||‘ full=y‘ from dual

打开cmd 窗口,标记一下上面复制的导库命令,修改一下,回车即可。

--导出库

select ‘exp 用户名/密码@数据库 file=‘||‘dmp文件‘||‘ full=y‘ from dual

 

oracle 自动生存清库脚本

标签:io   sp   on   文件   数据   bs   cti   nbsp   数据库   

原文地址:http://www.cnblogs.com/cegh/p/4147951.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!