0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

OracleDBスキーマ内のテーブルをすべて消したい

Posted at

スキーマの中身をexpしておいたたものでそっくり入れ替えたい

impでデータをインポートするのだが、その前にスキーマの内容クリアが必要で、そのためにDrop UserしてCreate Userをよくしていた。
実はテーブルを消したほうが行儀が良いのでは?と思ってSQL作成。

dropuserstable.sql
--set serveroutput on size 99999;
begin
	for cur in (select table_name from user_tables)
	loop
		--dbms_output.put_line(cur.table_name);
		execute immediate 'drop table ' || cur.table_name || ' cascade constraints purge';
	end loop;
end;
/

12cでやってたときに、データファイルのサイズが肥大する現象が発生した。原因は不明。ひょっとすると、上記のお行儀の影響があったのかな?と今では思うけど、未検証

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?