【发布时间】:2016-07-28 03:00:51
【问题描述】:
这是我正在处理的代码:
begin
DBMS_STATS.GATHER_TABLE_STATS (ownname => 'appdata' ,
tabname => 'TRANSACTIONS',
cascade => true,
estimate_percent => DBMS_STATS.AUTO_SAMPLE_SIZE,
method_opt=>'for all indexed columns size 1',
granularity => 'ALL',
degree => 1);
end;
执行代码后,显示PL/SQL procedure successfully completed。
如何查看由 DBMS_STATS 分析的特定表的统计信息?
【问题讨论】:
标签: oracle performance plsql oracle11g