Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to check whether statistics are collected successfully

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

You can observe whether the collection of statistics has been completed through the LAST_ANALYZED field in dba_ind_statistics and dba_tab_statistics, and only the completed collection will be recorded in these two views.

The test process is as follows (test environment 11.2.0.3 RAC):

1 create a test table with about 200w rows and the data source is dba_objects.

2 View the statistics in the view:

Select a.OWNER,a.INDEX_NAME,a.TABLE_NAME,a.LAST_ANALYZED from dba_ind_statistics a where table_name='STATEST1' and table_owner='YCR'

Select b.TABLENAMErect b.owner from dba_tab_statistics b.LASTRONERANALYZED from dba_tab_statistics b where table_name='STATEST1' and owner in ('OWNER)

Through observation, the statistics of the index are collected automatically when the index is created, and the statistics of the table are empty.

3 collect statistics manually and interrupt manually when executing for about 38 seconds (passed the test, it takes about 60 seconds for this table to collect statistics)

Begin

Dbms_stats.gather_table_stats (ownname = > 'YCR',tabname = >' STATEST1', estimate_percent = > 100, cascade = > true)

End

/

4 View the statistics in the view:

Select a.OWNER,a.INDEX_NAME,a.TABLE_NAME,a.LAST_ANALYZED from dba_ind_statistics a where table_name='STATEST1' and table_owner='YCR'

Select b.TABLENAMErect b.owner from dba_tab_statistics b.LASTRONERANALYZED from dba_tab_statistics b where table_name='STATEST1' and owner in ('OWNER)

Because the statistics have not been collected completely, the data in these two tables have not changed, and the information in the table will not be updated until the statistics are collected again.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report