SQL error -20000 at location stats_oradict_collect-4

Hi,
I have just upgraded BRTOOLS (6.4 to 7.10), but having following error while updating statistics for Oracle Dictionary, do you have any clue ?
oranq2> brconnect -u / -c -f stats -t ORADICT_STATS
BR0801I BRCONNECT 7.10 (24)
BR0805I Start of BRCONNECT processing: cebcpkml.sta 2009-07-27 21.12.35
BR0484I BRCONNECT log file: /oracle/NQ2/sapcheck/cebcpkml.sta
BR0280I BRCONNECT time stamp: 2009-07-27 21.12.37
BR0807I Name of database instance: NQ2
BR0808I BRCONNECT action ID: cebcpkml
BR0809I BRCONNECT function ID: sta
BR0810I BRCONNECT function: stats
BR0812I Database objects for processing: ORADICT_STATS
BR1314I Oracle dictionary statistics will be collected with default options
BR0126I Unattended mode active - no operator confirmation required
BR0280I BRCONNECT time stamp: 2009-07-27 21.12.37
BR1311I Starting collection of Oracle dictionary statistics...
BR0285I This function can take several seconds/minutes - be patient...
BR0280I BRCONNECT time stamp: 2009-07-27 21.13.04
BR0301E SQL error -20000 at location stats_oradict_collect-4, SQL statement:
'BEGIN DBMS_STATS.GATHER_DICTIONARY_STATS (ESTIMATE_PERCENT => NULL, METHOD_OPT => 'FOR ALL COLUMNS SIZE AUTO', GRANULAR                                                          ITY => 'ALL', CASCADE => TRUE, OPTIONS => 'GATHER', NO_INVALIDATE => FALSE); END;'
ORA-20000: Insufficient privileges to analyze an object in Dictionary Schema
ORA-06512: at "SYS.DBMS_STATS", line 13367
ORA-06512: at "SYS.DBMS_STATS", line 13726
ORA-06512: at "SYS.DBMS_STATS", line 16029
ORA-06512: at "SYS.DBMS_STATS", line 16071
ORA-06512: at line 1
BR1313E Collection of Oracle dictionary statistics failed
BR0806I End of BRCONNECT processing: cebcpkml.sta 2009-07-27 21.13.04
BR0280I BRCONNECT time stamp: 2009-07-27 21.13.04
BR0804I BRCONNECT terminated with errors

Mamun,
Try by executing catalog.sql. Also check below mention sap note  & thread.
SAP Note 948197 Merge fix for DBMS_STATS package on Oracle 9.2.x and 10.2.x
Re: Job BI_PROCESS_ODSACTIVAT terminated
Thanks,
Sushil

Similar Messages

  • SQL error -20003 at location stats_tab_collect-20

    Hello All,
    we are executing ths statistics with the followin command
    brconnect -u / -c -f stats -t all -f collect
    but the proccess report errors like:
    BR0301E SQL error -20003 at location stats_tab_collect-20, SQL statement:
    'BEGIN DBMS_STATS.GATHER_TABLE_STATS (OWNNAME => '"SAPSR3"', TABNAME => '"/BEV3/CHCMVWPRO"', ESTIMATE_PERCENT => NULL, METHOD_OPT => 'FOR ALL COLUMNS SIZE 1', DEGREE => NULL, CASCADE => TRUE, NO_INVALIDATE => FALSE); END;'
    ORA-20003: Specified bug number (5099019) does not exist
    ORA-06512: at "SYS.DBMS_STATS", line 14457
    ORA-06512: at "SYS.DBMS_STATS", line 14477
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for table SAPSR3./BEV3/CHCMVWPRO
    BR0301E SQL error -20003 at location stats_tab_collect-20, SQL statement:
    'BEGIN DBMS_STATS.GATHER_TABLE_STATS (OWNNAME => '"SAPSR3"', TABNAME => '"/BEV3/CHCTRGI"', ESTIMATE_PERCENT => 1, METHOD_OPT => 'FOR ALL COLUMNS SIZE 1', DEGREE => NULL, CASCADE => TRUE, NO_INVALIDATE => FALSE); END;'
    ORA-20003: Specified bug number (5099019) does not exist
    ORA-06512: at "SYS.DBMS_STATS", line 14457
    ORA-06512: at "SYS.DBMS_STATS", line 14477
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for table SAPSR3./BEV3/CHCTRGI
    How we can fix this error?
    Thanks
    Hernando

    hello, to update, I receive the following recommendation
    The error "ORA-20003: Specified bug number (5099019) does not exist
    seems caused by fix of bug 5099019 is not installed correctly.
    Could you please first check if the merge fix 8299095 has been
    installed successfully? Check lsinventory and check if the post
    installation steps have been performed well.
    Post-install steps:
    startup database
    connect using sqlplus as SYSDBA
    start $ORACLE_HOME/rdbms/admin/dbmsstat.sql
    start $ORACLE_HOME/rdbms/admin/prvtstas.plb
    start $ORACLE_HOME/rdbms/admin/prvtstat.plb
    exit sqlplus
    Once those steps have been performed would you please check the databasefor invalid objects per the instructions in OSS note 648203?
    I followed the steps in recommendation:
    the fix is installed on patch 8599814.
    I started the DB and ran the SQL scripts:
    SQL> start $ORACLE_HOME/rdbms/admin/dbmsstat.sql
    Package created.
    No errors.
    Synonym created.
    Grant succeeded.
    create role gather_system_statistics
    ERROR at line 1:
    ORA-01921: role name 'GATHER_SYSTEM_STATISTICS' conflicts with another
    user or
    role name
    Grant succeeded.
    Grant succeeded.
    Library created.
    SQL> start $ORACLE_HOME/rdbms/admin/prvtstas.plb
    Package created.
    No errors.
    Package body created.
    No errors.
    SQL> start $ORACLE_HOME/rdbms/admin/prvtstat.plb
    Package body created.
    No errors.
    PL/SQL procedure successfully completed.
    According to note 648203 I search for invalid objects
    SQL> SELECT SUBSTR(OWNER, 1, 20) OWNER,SUBSTR(OBJECT_NAME, 1, 35)
    OBJECT_NAME,
    2 SUBSTR(OBJECT_TYPE, 1, 20) OBJECT_TYPE
    3 FROM DBA_OBJECTS
    4 WHERE STATUS = 'INVALID';
    no rows selected
    SQL> SELECT SUBSTR(COMP_ID, 1, 20) COMP_ID,
    2 SUBSTR(COMP_NAME, 1, 40) COMP_NAME,
    3 STATUS
    4 FROM DBA_REGISTRY;
    COMP_ID
    COMP_NAME
    STATUS
    CATALOG
    Oracle Database Catalog Views
    VALID
    CATPROC
    Oracle Database Packages and Types
    VALID
    SQL> SELECT O.NAME FROM OBJ$ O, REGISTRY$ R
    2 WHERE O.STATUS > 1 AND
    3 (O.CTIME BETWEEN R.DATE_LOADING AND R.DATE_LOADED OR
    4 O.MTIME BETWEEN R.DATE_LOADING AND R.DATE_LOADED OR
    5 O.STIME BETWEEN R.DATE_LOADING AND R.DATE_LOADED);
    no rows selected
    According to note 838725 I executed the following script:
    SQL> begin DBMS_STATS.GATHER_DICTIONARY_STATS(
    2 ESTIMATE_PERCENT => NULL,
    3 METHOD_OPT => 'FOR ALL COLUMNS SIZE AUTO',
    4 GRANULARITY => 'ALL',
    5 CASCADE => TRUE,
    6 OPTIONS => 'GATHER',
    7 NO_INVALIDATE => FALSE);
    8 end;
    9 /
    begin DBMS_STATS.GATHER_DICTIONARY_STATS(
    ERROR at line 1:
    ORA-20003: Specified bug number (5099019) does not exist
    ORA-06512: at "SYS.DBMS_STATS", line 14611
    ORA-06512: at "SYS.DBMS_STATS", line 14957
    ORA-06512: at "SYS.DBMS_STATS", line 17261
    ORA-06512: at "SYS.DBMS_STATS", line 17303
    ORA-06512: at line 1
    And, if I run the command from the same note
    volta:oracmd 53% brconnect -u / -c -f stats -t oradict_stats
    BR0801I BRCONNECT 7.00 (43)
    BR0805I Start of BRCONNECT processing: ceblmvwb.sta 2009-09-12 18.08.17
    BR0484I BRCONNECT log file: /oracle/CMD/sapcheck/ceblmvwb.sta
    BR0280I BRCONNECT time stamp: 2009-09-12 18.08.18
    BR0807I Name of database instance: CMD
    BR0808I BRCONNECT action ID: ceblmvwb
    BR0809I BRCONNECT function ID: sta
    BR0810I BRCONNECT function: stats
    BR0812I Database objects for processing: ORADICT_STATS
    BR1314I Oracle dictionary statistics will be collected with default
    options
    BR0126I Unattended mode active - no operator confirmation required
    BR0280I BRCONNECT time stamp: 2009-09-12 18.08.18
    BR1311I Starting collection of Oracle dictionary statistics...
    BR0285I This function can take several seconds/minutes - be patient...
    BR0280I BRCONNECT time stamp: 2009-09-12 18.08.28
    BR0301E SQL error -20003 at location stats_oradict_collect-4, SQL
    statement:
    'BEGIN DBMS_STATS.GATHER_DICTIONARY_STATS (ESTIMATE_PERCENT => NULL,
    METHOD_OPT => 'FOR ALL COLUMNS SIZE AUTO', GRANULARITY => 'ALL',
    CASCADE => TRUE, OPTIONS => 'GATHER', NO_INVALIDATE => FALSE); END;'
    ORA-20003: Specified bug number (5099019) does not exist
    ORA-06512: at "SYS.DBMS_STATS", line 14611
    ORA-06512: at "SYS.DBMS_STATS", line 14957
    ORA-06512: at "SYS.DBMS_STATS", line 17261
    ORA-06512: at "SYS.DBMS_STATS", line 17303
    ORA-06512: at line 1
    BR1313E Collection of Oracle dictionary statistics failed
    BR0806I End of BRCONNECT processing: ceblmvwb.sta 2009-09-12 18.08.28
    BR0280I BRCONNECT time stamp: 2009-09-12 18.08.28
    BR0804I BRCONNECT terminated with errors
    I couldn´t run the statistics from my system.
    Hernando

  • BR0301E SQL error -942 at location db_connect-4

    Hi All
    We are getting the next error when we try to execute the BRCONNECT tools:
    Job started                                                                             
    Step 001 started (program RSDBAJOB, variant &0000000000294, user ID IU3269)             
    Execute logical command BRCONNECT On host qassap                                        
    Parameters: -u / -c -f stats -t ALL                                                     
    BR0801I BRCONNECT 6.40 (32)                                                             
    BR0805I Start of BRCONNECT processing: cdwnmcsr.sta 2007-11-05 13.30.37                 
    BR0280I BRCONNECT time stamp: 2007-11-05 13.30.38                                       
    BR0301E SQL error -942 at location db_connect-4                                         
    ORA-00942: table or view does not exist                                                 
    BR0310E Connect to database instance QUA failed                                         
    BR0280I BRCONNECT time stamp: 2007-11-05 13.30.38                                       
    BR0301W SQL error -942 at location brc_dblog_open-1                                     
    ORA-00942: table or view does not exist                                                 
    BR0324W Insertion of database log header failed                                         
    BR0806I End of BRCONNECT processing: cdwnmcsr.sta2007-11-05 13.30.38                    
    BR0280I BRCONNECT time stamp: 2007-11-05 13.30.38                                       
    BR0804I BRCONNECT terminated with errors                                                
    External program terminated with exit code 3                                            
    BRCONNECT returned error status E                                                       
    Job finished                                                                               
    Best Regards
    Reynaldo Rebolledo.

    Hi Juan
    The actual error that we have is the next:
    Job started                                                                               
    Step 001 started (program RSDBAJOB, variant &0000000000297, user ID IU3269)                            
    Execute logical command BRCONNECT On host qassap                                                       
    Parameters: -u / -c -f stats -t ALL                                                                    
    BR0801I BRCONNECT 6.40 (32)                                                                            
    BR0252E Function fopen() failed for '/oracle/QUA/920_64/dbs/initQUA.sap' at location BrInitSapRead-1   
    BR0253E errno 2: No such file or directory                                                             
    BR0159E Error reading BR*Tools profile /oracle/QUA/920_64/dbs/initQUA.sap                              
    BR0280I BRCONNECT time stamp: 2007-11-06 18.14.36                                                      
    BR0301E SQL error -942 at location db_connect-4                                                        
    ORA-00942: table or view does not exist                                                                
    BR0310E Connect to database instance QUA failed                                                        
    BR0806I End of BRCONNECT processing: cdwnrzsy.log2007-11-06 18.14.32                                   
    BR0280I BRCONNECT time stamp: 2007-11-06 18.14.36                                                      
    BR0804I BRCONNECT terminated with errors                                                               
    External program terminated with exit code 3                                                           
    BRCONNECT returned error status E                                                                      
    Job finished                                                                               
    The last week we made a refresh of PROD to QUA, the error is when try to run the stadistics on QUA, then we get the error and we found the initPDC.sap and we rename inside of the file and the file from PDC to QUA and then we get the error that we send in the first message. Today we deleted the file initQUA.sap and get this error. Can you help us.
    Best Regards
    Reynaldo Rebolledo

  • Update statistic error "BR0301E SQL error -904 at location ..."

    How do I fix this error in when running update statistics in DB13?
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    BR0886E Checking/collecting statistics failed for index SAPEWD./BIC/DZEW_C0055~01
    BR0280I BRCONNECT thread 2: time stamp: 2007-08-10 07.24.29
    BR0850I 6 of 87 objects processed - 0.051 of 0.745 units done
    BR0204I Percentage done: 6.90%, estimated end time: 7:24
    BR0001I ***_______________________________________________
    BR0280I BRCONNECT thread 2: time stamp: 2007-08-10 07.24.29
    BR0301E SQL error -904 at location stats_ind_collect-2
    ORA-00904: : invalid identifier
    ORA-06512: at "SYS.DBMS_STATS", line 8426
    ORA-06512: at "SYS.DBMS_STATS", line 8446
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for index SAPEWD./BIC/DZEW_C0056~0
    BR0280I BRCONNECT thread 2: time stamp: 2007-08-10 07.24.29
    BR0301E SQL error -904 at location stats_ind_collect-2
    ORA-00904: : invalid identifier
    ORA-06512: at "SYS.DBMS_STATS", line 8426
    ORA-06512: at "SYS.DBMS_STATS", line 8446
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for index SAPEWD./BIC/DZEW_C0056~01
    BR0280I BRCONNECT thread 2: time stamp: 2007-08-10 07.24.29
    BR0301E SQL error -904 at location stats_ind_collect-2
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Hi,
    with 9.2.0.7 there is a bug with dbms_stats you should then apply the note
    Note 898244 - ORA-904 with the DBMS_STATS package
    you have to install the patch 4627335 or patchset 9.2.0.8 and run @?/rdbms/admin/prvtstat.plb afterwhile
    Thanks

  • Update statistics - BR301E SQL error -1031 at location stats_tab_collect-3

    Hi,
    I'm having this error when update statistics is run:
    +BR301E SQL error -1031 at location stats_tab_collect-3+
    +ORA-01031: insufficient privileges+
    +ORA-06512: at "SYS.DBMS_STATS", line 10301+
    +ORA-06512: at "SYS.DBMS_STATS", line 10315+
    +ORA-06512: at line 1+
    The SAP was using the analyze table and I have changed to use DBMS_STATS. And now is returning this error.
    Any Idea ?
    Many Thanks.

    Hi Rui,
    Take a look at "Note 351163 - Creating ORACLE DB statistics using DBMS_STATS".
    Best regards,
    Orkun Gedik

  • BR0301E SQL error -1031 at location BrInitOraCreate-1

    when i am performing database backup through brtools 6.4 i am facing this error

    complete error list is
    BR0291I BRBACKUP will be started with options '-p initDCTEST.sap -d disk -t offline -m all -k no -e
    0 -l E'
    BR0280I BRTOOLS time stamp: 2005-10-18 16.23.43
    BR0670I Enter 'c[ont]' to continue, 'b[ack]' to go back, 's[top]' to abort:
    c
    BR0280I BRTOOLS time stamp: 2005-10-18 16.23.47
    BR0257I Your reply: 'c'
    BR0259I Program execution will be continued...
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    BR0051I BRBACKUP 6.40 (3)
    BR0169W Value 'ibs=' of parameter/option 'dd_in_flags' ignored for 'Windows NT' - 'bs=' assumed
    BR0055I Start of database backup: bdrbziml.afd 2005-10-18 16.23.47
    BR0280I BRBACKUP time stamp: 2005-10-18 16.23.48
    BR0301E SQL error -1031 at location BrInitOraCreate-1
    ORA-01031: insufficient privileges
    BR0303E Determination of RDBMS version failed
    BR0280I BRBACKUP time stamp: 2005-10-18 16.23.48
    BR0301W SQL error -942 at location BrbDbLogOpen-1
    ORA-00942: table or view does not exist
    BR0324W Insertion of database log header failed
    BR0056I End of database backup: bdrbziml.afd 2005-10-18 16.23.48
    BR0280I BRBACKUP time stamp: 2005-10-18 16.23.48
    BR0054I BRBACKUP terminated with errors
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    BR0292I Execution of BRBACKUP terminated with return code 3

  • BR0301E SQL error -1587 at location BrCtlCopy-1, SQL statement:

    Hello Guru's
    My backup is getting failed...... and the error description as follows,
    BR0051I BRBACKUP 7.00 (32)
    BR0189W Expiration period equal 0 - backup volumes could be immediately overwritten
    BR0055I Start of database backup: behpdcsz.ant 2012-01-05 11.09.09
    BR0484I BRBACKUP log file: /oracle/SID/sapbackup/behpdcsz.ant
    BR0477I Oracle pfile /oracle/SID/102_64/dbs/initSID.ora created from spfile /oracle/SID/102_64/dbs/spfileSID.ora
    BR0280I BRBACKUP time stamp: 2012-01-05 11.09.10
    BR0301E SQL error -1587 at location BrCtlCopy-1, SQL statement:
    '/* BRBACKUP */ ALTER DATABASE BACKUP CONTROLFILE TO '/oracle/SID/sapbackup/cntrlSID.dbf''
    ORA-01587: error during control file backup file copy
    ORA-27091: unable to queue I/O
    ORA-27072: File I/O error
    IBM AIX RISC System/6000 Error: 25: Not a typewriter
    Additional information: 7
    Additional information: 899
    Additional information: 819200
    BR0320E Copying of control file to /oracle/SID/sapbackup/cntrlSID.dbf failed
    BR0314E Collection of information on database files failed
    BR0056I End of database backup: behpdcsz.ant 2012-01-05 11.09.10
    BR0280I BRBACKUP time stamp: 2012-01-05 11.09.10
    BR0054I BRBACKUP terminated with errors
    Please helpme,
    Thanks in Advance.
    lakshmi P.

    Hello Friends,
    Solved.....
    Reason is there is no sufficient space for /oracle/SID/sapbackup
    Lakshmi P

  • BR0301E SQL error -12705 at location BrDbConnect-2

    Hi All,
       We are getting the below error while running the backup through cron. The backup runs fine when manually executed or through brtools.
       There are 2 databases on this server and we have upgraded one database(R3S) to 9.2.0.8 and the other database which is causing problem is on 9.2.0.7.
       The error log:
    BR0051I BRBACKUP 6.40 (44)
    BR0055I Start of database backup: bdycqvwn.anf 2008-06-10 11.05.01
    BR0484I BRBACKUP log file: /oracle/REH/sapbackup/bdycqvwn.anf
    BR0280I BRBACKUP time stamp: 2008-06-10 11.05.02
    BR0301E SQL error -12705 at location BrDbConnect-2
    ORA-12705: invalid or unknown NLS parameter value specified
    BR0310E Connect to database instance REH failed
    BR0280I BRBACKUP time stamp: 2008-06-10 11.05.02
    BR0301E SQL error -12705 at location BrDbConnect-2
    ORA-12705: invalid or unknown NLS parameter value specified
    BR0310E Connect to database instance REH failed
    BR0056I End of database backup: bdycqvwn.anf 2008-06-10 11.05.02
    BR0280I BRBACKUP time stamp: 2008-06-10 11.05.02
    BR0054I BRBACKUP terminated with errors
    Any help will be much appreciated.
    Regards
    Amit.

    The NLS values are
    NLS_LANGUAGE                   AMERICAN
    NLS_TERRITORY                  AMERICA
    NLS_CHARACTERSET               WE8DEC
    And env has been set to:
    HOME=/oracle/REH
    PATH=/oracle/REH/920_64/bin:.:/oracle/REH:/usr/sap/REH/SYS/exe/run:/usr/bin:/usr/ccs/bin:/usr/contrib/bin:/opt/nettladm/bin:/opt/fc/bin:/opt/fcms/bin:/opt/upgrade/bin:/opt/pd/bin:/usr/bin/X11:/usr/contrib/bin/X11:/opt/perf/bin://opt/perl/bin:/opt/resmon/bin:/usr/sbin/diag/contrib:/opt/pred/bin:/opt/hparray/bin:/opt/graphics/common/bin:/opt/ignite/bin:/opt/networker/bin:/opt/OV/bin/OpC:/opt/OV/bin:/opt/prm/bin:/opt/ssh/bin
    LOGNAME=orareh
    SHELL=/bin/csh
    TERM=xterm
    COLUMNS=126
    LINES=45
    MANPATH=/usr/share/man/%L:/usr/share/man:/usr/contrib/man/%L:/usr/contrib/man:/usr/local/man/%L:/usr/local/man:/opt/upgrade/share/man/%L:/opt/upgrade/share/man:/usr/dt/share/man:/opt/pd/share/man/%L:/opt/pd/share/man:/opt/ignite/share/man/%L:/opt/ignite/share/man:/opt/samba/man:/opt/perf/man/%L:/opt/perf/man://opt/perl/man:/opt/resmon/share/man:/opt/pred/share/man/%L:/opt/pred/share/man:/opt/hparray/share/man/%L:/opt/hparray/share/man:/opt/graphics/common/man:/opt/networker/man:/opt/prm/man/%L:/opt/prm/man:/opt/ssh/share/man
    TZ=EST5EDT
    SAPSYSTEMNAME=REH
    DIR_LIBRARY=/usr/sap/REH/SYS/exe/run
    SHLIB_PATH=/usr/sap/REH/SYS/exe/run:/oracle/REH/920_64/lib
    THREAD=NOPS
    dbms_type=ORA
    dbs_ora_tnsname=REH
    dbs_ora_schema=SAPREH
    ORACLE_PSRV=REH
    ORACLE_SID=REH
    DB_SID=REH
    ORACLE_HOME=/oracle/REH/920_64
    ORACLE_BASE=/oracle
    ORA_NLS33=/oracle/R3S/920_64/ocommon/nls/admin/data
    NLS_LANG=AMERICAN_AMERICA.WE8DEC
    SAPDATA_HOME=/oracle/REH
    Regards
    Amit.

  • BR0301E SQL error -1017 at location BrDbConnect-2

    Hi,
    When we run brbackup as user brtadm and orabrt we get the error:
    BR0051I BRBACKUP 7.00 (11)
    BR0055I Start of database backup: bdujhhla.qub 2007-01-12 17.28.02
    BR0280I BRBACKUP time stamp: 2007-01-12 17.28.02
    BR0301E SQL error -1017 at location BrDbConnect-2
    ORA-01017: invalid username/password; logon denied
    BR0310E Connect to database instance BRT failed
    BR0280I BRBACKUP time stamp: 2007-01-12 17.28.03
    BR0301E SQL error -1017 at location BrDbConnect-2
    ORA-01017: invalid username/password; logon denied
    BR0310E Connect to database instance BRT failed
    We try to create ops$orabrt user according to oss note 776505. But we get the error message:
    create user ops$orabrt identified externally temporary tablespace psaptemp;
    ERROR at line 1:
    ORA-01920: user name 'OPS$ORABRT' conflicts with another user or role name
    How can we solve this problem?
    Best Regards...

    Hi,
    You are getting the error: ORA-01920: user name 'OPS$ORABRT' conflicts with another user or role name
    because you already have that user, to check if the OPS$ user is present run this query:
    SELECT * from dba_users;
    you should be able to find the OPS$ user, its also possible that due to some configuration issue while installing oracle, the OPS$ user doesn't have the 'Externally' attribute to it.
    You can grant the required attributes using 'ALTER USER'
    Note 620540 - Authentication Troubleshooting Guide
    The above mentioned SAP Note clearly describes the issue you are facing.
    Regards,
    Siddhesh

  • BR0301E SQL error -1031 at location dblog_cleanup-5

    BR0301E SQL error -1031 at location dblog_cleanup-5
    ORA-01031: insufficient privileges
    BR0280I BRCONNECT time stamp: 2010-10-09 21.10.16
    BR0301E SQL error -1031 at location dblog_cleanup-6
    ORA-01031: insufficient privileges
    Kindly suggest me how to resolve this alert in DB13 clean up logs

    Hi,
    Have you made any changes  to you environmentals ?
    I had a similar problem for example when I had TNS_ADMIN set when I removed it it was fine
    Mark

  • SQL error -1017 at location db_connect-2

    I scheduled Check and update optimizer statistics job in DB13 and I get this error msg.
    BR0301E SQL error -1017 at location db_connect-2
    ORA-01017: invalid username/password; logon denied
    Connect to database instance BQ1 failed.........
    BRCONNECT returned error status E
    However, when i run the stats through BRTOOLS from the O.S. level it runs fine.
    Any help would be appreciated.
    Thanks.
    Shawn
    Message was edited by:
            shahid kizilbash

    400241 This note talks about the error which u have.
    The following three SAP Notes already mentioned describe the cause
    and solution for ORA-01017 and setting up the OPS$ mechanism.
    400241    Problems with ops$ or sapr3 connect to Oracle
    134592    Importing the SAPDBA role ( sapdba_role.sql)
    50088    Creating OPS$ users on Windows NT/Oracle
    You run the sapdba_role.sql (as mentioned in the note 134592) once you
    have created the OPS$ user.
    Thanks
    Subbu

  • BR0301E SQL error -27140 at location db_connect-2, SQL statement: DB13

    Hello All,
    We have ECC 6 with
    Database Oracle: 10.2.0.2.0
    OS: HP-UX
    We are facing problem while running Check and Update Optimizer Statistics in DB13. The Job Log says
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000003, user ID LARJHD01)
    Execute logical command BRCONNECT On host madsappr
    Parameters: -u / -jid STATS20090519130903 -c -f stats -t ALL
    SXPG_COMMAND_EXECUTE(LONG)
    COMMANDNAME = BRCONNECT
    OPERATINGSYSTEM = ANYOS
    TARGETSYSTEM = madsappr
    DESTINATION =
    BR0801I BRCONNECT 7.00 (24)
    BR0805I Start of BRCONNECT processing: ceapnjyf.sta 2009-05-19 13.09.05
    BR0484I BRCONNECT log file: /oracle/PRD/sapcheck/ceapnjyf.sta
    BR0280I BRCONNECT time stamp: 2009-05-19 13.09.07
    BR0301E SQL error -27140 at location db_connect-2, SQL statement:
    'CONNECT /'
    ORA-27140: attach to post/wait facility failed
    BR0310E Connect to database instance PRD failed
    BR0280I BRCONNECT time stamp: 2009-05-19 13.09.07
    BR0301E SQL error -27140 at location db_connect-2, SQL statement:
    'CONNECT /'
    ORA-27140: attach to post/wait facility failed
    BR0310E Connect to database instance PRD failed
    BR0806I End of BRCONNECT processing: ceapnjyf.sta2009-05-19 13.09.07
    BR0280I BRCONNECT time stamp: 2009-05-19 13.09.07
    BR0804I BRCONNECT terminated with errors
    External program terminated with exit code 3
    BRCONNECT returned error status E
    Job finished
    Please throw some light on this error.
    =Alex Daniel=

    Hi,
    Please check below links.
    DB13 Jobs are Failing and Brconnect does not work
    Re: Error in CHECKDB
    http://ora-exp.blogspot.com/2006/12/solution-of-ora-27140-attach-to.html
    Thanks,
    Sushil

  • BR0301E SQL error -12705 at location db_connect-2

    Im getting below error when trying to initiate backup with DB13.
    BR0801I BRCONNECT 6.40 (26)
    BR0805I Start of BRCONNECT processing: cduyqhtg.chk 2007-07-30 15.32.00
    BR0280I BRCONNECT time stamp: 2007-07-30 15.32.00
    BR0301E SQL error -12705 at location db_connect-2
    ORA-12705: invalid or unknown NLS parameter value specified
    BR0310E Connect to database instance BRP failed
    BR0280I BRCONNECT time stamp: 2007-07-30 15.32.00
    BR0301E SQL error -12705 at location db_connect-2
    ORA-12705: invalid or unknown NLS parameter value specified
    BR0310E Connect to database instance BRP failed
    The NLS_LANG variable is set as NLS_LANG=AMERICAN_AMERICA.UTF8 with HP-UX .
    I have verified the environment (nota 602843).  The version Oracle is 9.2.0.6 and brconnect is 6.40 (15).
    This problem occurs since we changed the hardware.  Before, this system SAP shared with other 2 systems SAP, now the system that has east problem this in a new hardware

    Is the new hardware IA64 or PA-RISC?
    I suggest upgrading to the latest BR*TOOLS (patchlevel 44).
    Markus

  • BR0301E SQL error -1017 at location db_connect-2 during DB13

    While executing the check database through DB13 following error is showing by this t-code
    08.12.2009     08:00:30     Job started
    08.12.2009     08:00:30     Step 001 started (program RSDBAJOB, variant &0000000000178, user ID 11001481)
    08.12.2009     08:00:31     Execute logical command BRCONNECT On host eccect
    08.12.2009     08:00:31     Parameters: -u / -jid CHECK20091013080000 -c -f check
    08.12.2009     08:00:31     SXPG_COMMAND_EXECUTE(LONG)
    08.12.2009     08:00:31     COMMANDNAME = BRCONNECT
    08.12.2009     08:00:31     OPERATINGSYSTEM = ANYOS
    08.12.2009     08:00:31     TARGETSYSTEM = eccect
    08.12.2009     08:00:31     DESTINATION =
    08.12.2009     08:00:31     BR0801I BRCONNECT 7.00 (33)
    08.12.2009     08:00:31     BR0805I Start of BRCONNECT processing: cecbuhnj.chk 2009-12-08 08.00.31
    08.12.2009     08:00:31     BR0484I BRCONNECT log file: /oracle/ECT/sapcheck/cecbuhnj.chk
    08.12.2009     08:00:31     BR0280I BRCONNECT time stamp: 2009-12-08 08.00.31
    08.12.2009     08:00:31     BR0301E SQL error -1017 at location db_connect-2,SQL statement:
    08.12.2009     08:00:31     'CONNECT /'
    08.12.2009     08:00:31     ORA-01017: invalid username/password; logon denied
    08.12.2009     08:00:31     BR0310E Connect to database instance ECT failed
    08.12.2009     08:00:31     BR0280I BRCONNECT time stamp: 2009-12-08 08.00.31
    08.12.2009     08:00:31     BR0301E SQL error -1017 at location db_connect-2,SQL statement:
    08.12.2009     08:00:31     'CONNECT /'
    08.12.2009     08:00:31     ORA-01017: invalid username/password; logon denied
    08.12.2009     08:00:31     BR0310E Connect to database instance ECT failed
    08.12.2009     08:00:31     
    08.12.2009     08:00:31     BR0806I End of BRCONNECT processing: cecbuhnj.chk2009-12-08 08.00.31
    08.12.2009     08:00:31     BR0280I BRCONNECT time stamp: 2009-12-08 08.00.31
    08.12.2009     08:00:31     BR0804I BRCONNECT terminated with errors
    08.12.2009     08:00:31     External program terminated with exit code 3
    08.12.2009     08:00:31     BRCONNECT returned error status E
    08.12.2009     08:00:32     Job finished
    This ECT client i have made through system copy while restoring the backup of Production server on this client afterward make a new client 500 (production client ) to new client 590. every thing is working fine. but while executing DB13 commands as well as backup through BR tools this error comes.
    Could somebody resolve this error , i will be very thankful
    Ravi kant Arya

    Friends
    a smal corretion here
    its not  OPS$ORA<SID>
    but OPS$<SID>ADM User to be created.
    I faced the same issue.
    resolved by following the note '
    SAP Note 400241 - Problems with ops$ or sapr3 connect to Oracle
    o Check whether creating the OPS$ mechanism in accordance with to
    Note 50088 (WINDOWS) or Note 361641 (UNIX) solves the problem.
    o The table SAPUSER must occur in the system only once and it must be
    assigned to the user OPS$<sid>ADM. Use the following query to check
    this:
    SELECT OWNER FROM DBA_TABLES WHERE TABLE_NAME = 'SAPUSER';
    If the system returns an owner <owner> other than OPS$<sid>ADM, you
    must delete the relevant SAPUSER tables:
    DROP TABLE "<owner>".SAPUSER;
    If the system does not return OPS$<sid>ADM, you must create the
    table SAPUSER as <sid>adm and enter the password:
    CREATE TABLE "OPS$<sid>ADM".SAPUSER
    (USERID VARCHAR2(256), PASSWD VARCHAR2(256));
    INSERT INTO "OPS$<sid>ADM".SAPUSER VALUES ('<sapowner>',
    '<password>');

  • SQL error -1017 at location BrDbConnect-2, SQL statement:

    Hi,
      I get follwoing error while trying brarchiev.
      How do i fix this ?
    brarchive
    BR0002I BRARCHIVE 7.00 (18)
    BR0252E Function fopen() failed for '/oracle/XID/saparch/adyveabv.sve' at location main-5
    BR0253E errno 13: Permission denied
    BR0121E Processing of log file /oracle/XID/saparch/adyveabv.sve failed
    BR0280I BRARCHIVE time stamp: 2008-09-16 20.13.19
    BR0301W SQL error -1017 at location BrDbConnect-2, SQL statement:
    'CONNECT system/*******'
    ORA-01017: invalid username/password; logon denied
    BR0310W Connect to database instance XID failed
    BR0007I End of offline redo log processing: adyveabv.sve 2008-09-16 20.13.19
    BR0280I BRARCHIVE time stamp: 2008-09-16 20.13.19
    BR0005I BRARCHIVE terminated with errors
    3
    Thansk,
    Suman

    Hi,
    I think you did not specify any user on the command line, then BRCONNECT will use the default "SYSTEM/MANAGER"
    As you change the default, BR* fails.
    1) It is totally NOT recommended to use BR* from the command line, it is prefered to be used from the DB13 scheduling tool.
    2) you have to indicate to the BR* tool the user that has to be "used" to connect to the database. This is done with the parameter:
    -u <user>/<password>
    3) I recommend you to create the ops$<sid>adm user ( see note 361641 and 50088 ) and, if you do not use DB13, call the tool with thecommand
            brarchive -u / -s -p initBWP.sap.ssl2020.dd -c
    Please make sure that you have configured the OPS$ user correctly as per following notes:-
    400241    Problems with ops$ or sapr3 connect to Oracle
    50088    Creating OPS$ users on Windows NT/Oracle
    134592    Importing the SAPDBA role ( sapdba_role.sql)
    If the config of the OPS$ user is done correctly and follow the notes above,the issue will be resolved.
    Thanks & Regards,
    Pradeep Srigiri

Maybe you are looking for

  • Having trouble setting up home network for home sharing

    Hi there, I'm new the idea of home sharing. What i want to do is watch the movies that i have on my iMac on my iPad. So sort of like wireless streaming. I see that Home sharing on iTunes allows you to view videos stored on your iMac on another device

  • Why must I purchase OSX Lion for my Macbook?

    I have an elderly MacBook that runs quite happily but wants to use Mobile Me. I also have a new iPad and iPhone bothe with OS 5.1 and which want to use iCloud. So how do I get to sync my MacBook with my other devices without having to buy a new OS fo

  • How to hide Top Level Navigation?

    Hi, I created a quicklink for an iview. I am able to call the iview from IE window using the quicklink. But it displays the top level navigation (Company Logo, Welcome message, Logoff, Role tabs,...). How do I hide this? Thanks Sundar

  • Bundle gap

    when i bind a property like label of a text field to the bundle, on visual editor i can see nothing. i hope to see default language value of the bind key. i can see the result when i run the application. i also expect to see bundles properties when i

  • The Green Screen and Video Problems

    Hello, I've read through the issues and answers on this topic but some of the things are working and some not.  For isntance, I was able to resolve one of my issues with some other fixes I had found through general online forums for the "green" scree