Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Job to import system statistics - errors

Re: Job to import system statistics - errors

From: Fuad Arshad <fuadar_at_yahoo.com>
Date: Tue, 13 Jun 2006 11:45:14 -0700 (PDT)
Message-ID: <20060613184514.43555.qmail@web82101.mail.mud.yahoo.com>


grant your id execute priviliege directly to dbms_stats and it should work. had the same issue

I'm stuck. Pulling my hair out.  

I have collected system statistics for day, night and weekend processing.  

I can interactively import system statistics with no problems:  

SQL->execute DBMS_STATS.IMPORT_SYSTEM_STATS(stattab => 'SYSTEM_STAT_TABLE', statid => 'DAYTIME', statown => 'SYSTEM');  

PL/SQL procedure successfully completed.  

When I put that in an oracle job, It errors and the trace file is:  

ORA-12012: error on auto execute of job 2219 ORA-20000: Unable to import system statistics stats from user stat table SYSTEM. SYSTEM_STAT_TABLE: does not exist or insufficient privileges ORA-06512: at "SYS.DBMS_STATS", line 5575 ORA-06512: at line 1
*** 2006-06-13 09:55:33.659
ORA-12012: error on auto execute of job 2219 ORA-20000: Unable to import system statistics stats from user stat table SYSTEM. SYSTEM_STAT_TABLE: does not exist or insufficient privileges ORA-06512: at "SYS.DBMS_STATS", line 5575 ORA-06512: at line 1    

I have given myself explicit privileges to the system.system_stat_table:  

  1 select grantee, owner, table_name, privilege   2 from dba_tab_privs
  3* where table_name = 'SYSTEM_STAT_TABLE'  

GRANTEE                        OWNER           TABLE_NAME                PRIVILEGE

------------------------------ --------------- ------------------------- --------------------
SSMITH SYSTEM SYSTEM_STAT_TABLE ALTER SSMITH SYSTEM SYSTEM_STAT_TABLE DELETE SSMITH SYSTEM SYSTEM_STAT_TABLE INDEX SSMITH SYSTEM SYSTEM_STAT_TABLE INSERT SSMITH SYSTEM SYSTEM_STAT_TABLE SELECT SSMITH SYSTEM SYSTEM_STAT_TABLE UPDATE SSMITH SYSTEM SYSTEM_STAT_TABLE REFERENCES

II also have granted ssmith GATHER_SYSTEM_STATISTICS role.  

Any ideas?  

Steve
--

http://www.freelists.org/webpage/oracle-l Received on Tue Jun 13 2006 - 13:45:14 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US