oracle 批量清空数据中的数据

前端之家收集整理的这篇文章主要介绍了oracle 批量清空数据中的数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
declare
v_11sql varchar2(2000) ;
CURSOR cur is select table_name from user_tables where table_name  order by table_name ;
begin
for rows in cur
loop
  v_11sql:= 'TRUNCATE TABLE ' || rows.table_name||';' ;
    dbms_output.put_line(v_11sql);

end loop;
end;

select table_name from user_tables order by table_name ;

如果执行不成功,直接使用 dbms_output.put_line 输出所需的sql再统一执行

原文链接:https://www.f2er.com/oracle/211575.html

猜你在找的Oracle相关文章