Skip to Main Content

E-Business Suite

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Gather schema statistics in EBS

Beauty_and_dBestMar 25 2019 — edited Feb 9 2021

EBS 12.x

11g

Hi ALL,

We want to gather statistics for ALL schema in EBS.

Which of the two programs is able to serve the purpose?

1.)

Exec FND_STATS.GATHER_SCHEMA_STATISTICS('ALL', 10, 8,'NOBACKUP', NULL, 'LASTRUN','GATHER AUTO', 10, 'N');

or

2.)

begin

dbms_stats.gather_schema_stats(

'SYS',

options=>'GATHER STALE',

estimate_percent =>

DBMS_STATS.AUTO_SAMPLE_SIZE,

method_opt => 'FOR ALL COLUMNS SIZE AUTO',

cascade => TRUE);

end;

/

Please help....

Kind regards,

jc

This post has been answered by Vishnu Vinnakota on Mar 26 2019
Jump to Answer
Comments
Post Details
Added on Mar 25 2019
7 comments
10,793 views