Administrator
|
It is already documented Roshan.
It uses AWR data to report object growth trends.
Here are some examples of the usage:
SELECT *
FROM TABLE(DBMS_SPACE.object_growth_trend ('SCOTT','EMP','TABLE'))
ORDER BY timepoint;
SELECT TIMEPOINT, SPACE_USAGE, SPACE_ALLOC, QUALITY FROM TABLE (DBMS_
SPACE.OBJECT_GROWTH_TREND ('DEV_SOAINFRA','COMPOSITE_INSTANCE','TABLE'));
In the output, you should concantrate on timepoint and space* columns. So that, you can make a decision about the growth trends of your objects.
|