import groovy.sql.Sql
sql = Sql.newInstance(
"jdbc:oracle:thin:@localhost:1521:orcl",
"scott",
"tiger",
"oracle.jdbc.driver.OracleDriver")
// 全行走査で統計取得
sql.execute("begin dbms_stats.gather_table_stats('SCOTT', 'EMP'); end;")
// サンプリングで統計取得
sql.execute("begin dbms_stats.gather_table_stats('scott', 'dept', estimate_percent => 30); end;")
動作環境
Groovy 1.6.4, JDK6 Update16, Oracle11g R1
関連情報
DBMS_STATS
http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28419/d_stats.htm#ARPLS059
0 件のコメント:
コメントを投稿