码迷,mamicode.com
首页 > 数据库 > 详细

数据收集 DBMS_STATS.GATHER_TABLE_STATS

时间:2019-12-25 13:20:49      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:rom   session   table   lte   print   cli   system   数据收集   child   


select b.SQL_CHILD_NUMBER,a.SQL_TEXT,a.SQL_FULLTEXT,a.SQL_ID,b.EVENT,b.USERNAME,b.* from gv$sql a,gv$session b
where a.sql_id=b.sql_id
and a.CHILD_NUMBER=b.SQL_CHILD_NUMBER and b.USERNAME not in(‘SYSTEM‘,‘SYS‘)
and b.EVENT not in(‘SQL*Net message from client‘,‘SQL*Net message to client‘)
order by 1

 

exec DBMS_STATS.GATHER_TABLE_STATS(‘stg‘,‘T_PRINT_LABEL‘);
grant select on T_PRINT_LABEL to public;

数据收集 DBMS_STATS.GATHER_TABLE_STATS

标签:rom   session   table   lte   print   cli   system   数据收集   child   

原文地址:https://www.cnblogs.com/Snowfun/p/12096007.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!