How to gather statistics on Oracle eBS.
Don't use package DBMS_STATS to do that, using FND_STATS is a good command.
Also,don't use the ANALYZE command.
Eg.
Use the following command to gather schema statistics:
exec fnd_stats.gather_schema_statistics('PO')
exec fnd_stats.gather_schema_statistics('ALL')
Use the following command for gathering statistics on a temporary table
(ie: temporary tablename = temp1 in schema INV):
exec fnd_stats.gather_table_stats('INV','temp1');
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/38542/viewspace-1043942/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- How restore CBO statisticsREST
- Gather_stats_job 呼叫dbms_stats.gather_database_stats_job_proc過程來收集statistics 的資訊Database
- oracle之StatisticsOracle
- Oracle Column Group StatisticsOracle
- sql tuning gather_plan_statistics與filter和執行計劃一點測試SQLFilter
- How Oracle Works!Oracle
- How to Study OracleOracle
- [20240313]toad gather_plan_statistics執行計劃相關問題.txt
- How to enable trace in OracleOracle
- In Oracle,How to use dumpOracle
- An Example of How Oracle WorksOracle
- Oracle 12C Statistics on Column GroupsOracle
- Oracle HowTo:How to get Oracle SCN?Oracle
- How Oracle Locking WorksOracle
- How to rename an Oracle stored procedureOracle
- SciTech-Mathmatics-Probability+Statistics-Population Vs. Sampling: Representative Samples + How to obtain SamplesAI
- Oracle TIMED_STATISTICS 引數 說明Oracle
- How Oracle Store Number internal(zt)Oracle
- How to Relink Oracle Database SoftwareOracleDatabase
- How to Shrink Undo Segment In Oracle DatabaseOracleDatabase
- How To Delete An Oracle Applications UserdeleteOracleAPP
- How to find Current open Cursors in OracleOracle
- how to kill the runing job in ORACLEOracle
- How to drop Oracle RAC database manually?OracleDatabase
- How to purge the Oracle Database Recycle BinOracleDatabase
- How to use hints in Oracle sql for performanceOracleSQLORM
- How Oracle Net Services Works (281)Oracle
- gather stats的小程式
- How to Change hostname in Oracle Linux 7OracleLinux
- How to Specify an INDEX Hint oracle官方文件IndexOracle
- How to migrate data from Oracle to MSSQLSERVEROracleSQLServer
- How to Deinstall Oracle Clusterware Home ManuallyOracle
- How Oracle Store Number internal?(轉載)Oracle
- How to find Master Node in Oracle RAC(zt)ASTOracle
- How to Rename Tablespace In Oracle10gOracle
- How Oracle Uses the Data Dictionary (262)Oracle
- How to maintain Oracle10g RecyclebinAIOracle
- Database StatisticsDatabase