1.查看Oracle中表的统计信息oracle数据库在执行sql语句的时候,会根据统计信息计算怎样执行性能更优,当执行性能比自己想象的慢时,就有可能是统计信息不新导致,查看统计信息常用的方式有如下三种:1查看当前用户下的统计信息select*fromuser_tab_statisticstwheret.table_name=upper('dp_query_table_config');2查看dba用户下的统计信息select*fromdba_tab_statisticstwheret.table_name=upper('dp_query_table_config');3如果上面两个都没有查到,