EXP-00091: Exporting questionable statistics.
means that Export exports statistics that is dated before some changes in the table.
So the stistics is not relevant and need to be updated using DBMS_STATS package.
In fact this is only a warning that possibly the CBO will deal with old statistics
and so the execution plans can not be optimal.
Main Topics
Browse All Topics





by: angelIIIPosted on 2006-11-21 at 06:02:41ID: 17987096
>EXP-00091: Exporting questionable statistics.
simply ensure to update the table statistics regulary on all the tables. command is ANALYZE TABLE <tablename> COMPUTE STATISTICS;
>Then I have another SQL script containing the commands:
does it also have the last line EXIT; in the script...