IT貓撲網(wǎng):您身邊最放心的安全下載站! 最新更新|軟件分類|軟件專題|手機(jī)版|論壇轉(zhuǎn)貼|軟件發(fā)布

您當(dāng)前所在位置: 首頁數(shù)據(jù)庫Oracle → ORACLE清空某用戶下所有表記錄truncate

ORACLE清空某用戶下所有表記錄truncate

時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)

  declare

  towner varchar2(30);

  begin

  towner := '&user';

  /*

  先禁用表上所有的外鍵約束

  */

  for c in (select 'alter table '||owner||'.'||t.table_name || ' disable CONSTRAINT '||t.constraint_name as csql from all_constraints t where t.owner = towner? and t.constraint_type='R')

  loop

  begin

  execute immediate c.csql;

  dbms_output.put_line(c.csql|| '? ...........√');

  exception

  when others then

  dbms_output.put_line(c.csql||' ..........ⅹ');

  end;

  end loop;

  /*

  開始清理表數(shù)據(jù)

  */

  for c in (select owner,object_name,'truncate table '|| owner||'.'||object_name as dsql

  from all_objects? where object_type='TABLE'? and owner = towner) loop

  begin

  execute immediate c.dsql;

  dbms_output.put_line(c.dsql || '? ...........√');

  exception

  when others then

  dbms_output.put_line(c.dsql||' ..........ⅹ');

  end;

  end loop;

  /*

  啟用表上的外鍵約束

  */

  for c in (select 'alter table '||owner||'.'||table_name || ' enable CONSTRAINT '||t.constraint_name as csql from all_constraints t where t.owner = towner? and t.constraint_type='R')

  loop

  begin

  execute immediate c.csql;

  dbms_output.put_line(c.csql|| '? ...........√');

  exception

  when others then

  dbms_output.put_line(c.csql||' ..........ⅹ');

  end;

  end loop;

  end;

關(guān)鍵詞標(biāo)簽:ORACLE

相關(guān)閱讀

文章評論
發(fā)表評論

熱門文章 Oracle中使用alter table來增加,刪除,修改列的語法 Oracle中使用alter table來增加,刪除,修改列的語法 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 誤刪Oracle數(shù)據(jù)庫實例的控制文件 誤刪Oracle數(shù)據(jù)庫實例的控制文件 為UNIX服務(wù)器設(shè)置Oracle全文檢索 為UNIX服務(wù)器設(shè)置Oracle全文檢索

相關(guān)下載

    人氣排行 oracle中使用SQL語句修改字段類型-oracle修改SQL語句案例 Oracle中使用alter table來增加,刪除,修改列的語法 ORACLE SQL 判斷字符串是否為數(shù)字的語句 ORACLE和SQL語法區(qū)別歸納(1) oracle grant 授權(quán)語句 ORACLE修改IP地址后如何能夠使用 如何加速Oracle大批量數(shù)據(jù)處理 Oracle刪除表的幾種方法