首页 > 数据库技术 > 详细

oracle删除数据库中的所有数据的拼接语句

时间:2015-03-26 19:33:08      阅读:263      评论:0      收藏:0      [点我收藏+]

create or replace function count_rows
/**
查询各表实际记录数
*/
(table_name in varchar2,
owner in varchar2 default null)
return number
authid current_user
IS
num_rows number;
stmt varchar2(2000);
begin
if owner is null then
stmt := ‘select count(*) from "‘||table_name||‘"‘;
else
stmt := ‘select count(*) from "‘||owner||‘"."‘||table_name||‘"‘;
end if;
execute immediate stmt into num_rows;
return num_rows;
end;

select table_name, count_rows(table_name) cnt, ‘TRUNCATE TABLE ‘ || table_name || ‘ ;‘ || chr(10) || ‘ANALYZE TABLE ‘ || table_name || ‘ ESTIMATE STATISTICS;‘ from user_tables where count_rows(table_name) > 0;

oracle删除数据库中的所有数据的拼接语句

原文:http://www.cnblogs.com/doudou618/p/4369261.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!