import groovy.sql.Sql
sql = Sql.newInstance(
"jdbc:oracle:thin:@localhost:1521:orcl",
"scott",
"tiger",
"oracle.jdbc.driver.OracleDriver")
// テーブル統計のアンロック
sql.execute("begin dbms_stats.unlock_table_stats('SCOTT', 'EMP'); end;")
// 全行走査で統計取得
sql.execute("begin dbms_stats.gather_table_stats('SCOTT', 'EMP'); end;")
動作環境
Groovy 1.6.4, JDK6 Update16, Oracle11g R1
関連情報
UNLOCK_TABLE_STATS Procedure
http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28419/d_stats.htm#i1040393
0 件のコメント:
コメントを投稿