View Single Post

   
  #3 (permalink)  
Old 04-07-2008, 11:50 PM
M
 
Posts: n/a
Default Re: problem running export_schema_stats on different schema

Ok, here is the solution...thanks to me for my help...

BEGIN
SYS.DBMS_STATS.EXPORT_SCHEMA_STATS ('POWNER',
'FULL_PROD_STATS',
NULL,
USER);
END;

> -- Problem occurs here...
> BEGIN
> SYS.DBMS_STATS.EXPORT_SCHEMA_STATS ('POWNER',
> 'MK.FULL_PROD_STATS');
> END;

Reply With Quote