BACK UP DB13 ONLINE ERROR

Hello friends,
i have a prblem whenever i take an online back up.
these are the errors:
BR0278E Command output of 'dd bs=64k conv=sync if=G:\ORACLE\PAR\SAPDATA3\PAR_1\PAR.DATA1 of=/dev/nmt0':
dd: unable to initialize ASPI manager            
dd: using NT tape support                        
dd: The request was aborted.                     
dd: write error: The request was aborted.        
1+0 records in                                   
0+0 records out                                  
1 write error                                    
BR0280I BRBACKUP time stamp: 2008-12-01 21.16.16 
BR0279E Return code from 'dd bs=64k conv=sync if=G:\ORACLE\PAR\SAPDATA3\PAR_1\PAR.DATA1 of=/dev/nmt0': 1
BR0222E Copying G:\ORACLE\PAR\SAPDATA3\PAR_1\PAR.DATA1 to/from /dev/nmt0 failed due to previous errors  
please reply
regards,
king solomon

Hi,
please restore you backup using copy and paste into their appropriate directories.
and do the following,
C:\>brtools
BR0651I BRTOOLS 7.00 (36)
BR0280I BRTOOLS time stamp: 2008-12-11 11.38.57
BR0656I Choice menu 1 - please make a selection
BR*Tools main menu
1 = Instance management
2 - Space management
3 - Segment management
4 - Backup and database copy
5 - Restore and recovery
6 - Check and verification
7 - Database statistics
8 - Additional functions
9 - Exit program
Standard keys: c - cont, b - back, s - stop, r - refr, h - help
BR0662I Enter your choice:
5
BR0280I BRTOOLS time stamp: 2008-12-11 11.39.48
BR0663I Your choice: '5'
BR0280I BRTOOLS time stamp: 2008-12-11 11.39.48
BR0656I Choice menu 11 - please make a selection
Restore and recovery
1 = Complete database recovery
2 - Database point-in-time recovery
3 - Tablespace point-in-time recovery
4 - Whole database reset
5 - Restore of individual backup files
6 - Restore and application of archivelog files
7 - Disaster recovery
8 - Reset program status
Standard keys: c - cont, b - back, s - stop, r - refr, h - help
BR0662I Enter your choice:
1
BR0280I BRTOOLS time stamp: 2008-12-11 11.40.17
BR0663I Your choice: '1'
BR0280I BRTOOLS time stamp: 2008-12-11 11.40.17
BR0657I Input menu 34 - please enter/check input values
BRRECOVER options for restore and recovery
1 * Recovery type (type) ............. [complete]
2 - BRRECOVER profile (profile) ...... [initGDT.sap]
3 ~ BACKINT/Mount profile (parfile) .. []
4 - Database user/password (user) .... [/]
5 - Recovery interval (interval) ..... [30]
6 - Confirmation mode (confirm) ...... [yes]
7 - Scrolling line count (scroll) .... [20]
8 - Message language (language) ...... [E]
9 - BRRECOVER command line (command) . [-p initGDT.sap -t complete -i 30 -s 20 -l E]
Standard keys: c - cont, b - back, s - stop, r - refr, h - help
BR0662I Enter your choice:
c
Then continue two times and your database will be recovered.

Similar Messages

  • Dynamic Disk Showing Online Error

    Hi Team,
    I have a file server , with 3 TB of spanned Drive. This Drive consist two virtual Dynamic Disk  ( 1.5 TB each). One of 1.5 TB Disk
    Dynamic Disk showing ( Online Error). and other 1.5 Tb disk is fine. I read some Article it Says error can be resolved by Reactivating the disk. 
    https://technet.microsoft.com/en-in/library/cc787481(v=ws.10).aspx#BKMK_5
    ============================================================================
    A dynamic disk's status is Online (Errors).
    Cause:  The dynamic disk has I/O errors on a region of the disk. A warning icon appears on the dynamic disk with errors.
    Solution:  If the I/O errors are temporary, reactivate the disk to return it to Online status. For instructions describing how to bring
    the disk back online, see Reactivate a missing or offline dynamic disk.
    ===========================================================================
    I just wanted to know . what will be impact if I reactivate the Disk  any impact in Data ? what are precaution I can take while Re-activating the disk
    This is virtual  windows server 2003 running on vmware.  
    I will Appreciate if any one respond on this 
    Regards, Triyambak

    There should be no problem on Data. However, it is always recommended to backup them before proceeding. OneDrive can help as a temporary storage.
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • I'm getting a Download Error warning after attempting to download and install CC. No error code – just a button prompt to Reload Applications which takes me straight back to the Download Error. All my previously installed CC apps work fine but I need to u

    I'm getting a Download Error warning after attempting to download and install CC. No error code – just a button prompt to Reload Applications which takes me straight back to the Download Error. All my previously installed CC apps work fine but I need to upgrde to be compatible with colleagues. Thanks

    I'm having exactly the same problem......I'm running an iMac with OS X 10.10.1. We have BT fibre optic business broadband. Everything has been running just fine until about 2 weeks ago when the apps in my CC panel just disappeared. I have made no changes to our systems and I am the only person to administer it all.....

  • [11g] Datapump Export "job_state" comes back "STOPPED" but no error in log.

    Hello,
    First of all, here are the SQL statements that I'm executing:
    BEGIN :JobId := Dbms_DataPump.Open(operation => 'EXPORT', job_mode => 'TABLE'); END;
    BEGIN
      Dbms_DataPump.Add_File(handle => :JobId, filename => 'MYORACLEBACKUP1', directory => 'ABAT_DUMP_DIR', filetype => 1, reusefile => 1); --DMP
      Dbms_DataPump.Add_File(handle => :JobId, filename => 'MYORACLEBACKUP.log', directory => 'ABAT_DUMP_DIR', filetype => 3); --LOG
      Dbms_DataPump.Metadata_Filter(handle => :JobId, name => 'SCHEMA_LIST', value => '''PRTO9A''');
      Dbms_DataPump.Metadata_Filter(handle => :JobId, name => 'NAME_LIST', value => '''ALERTS''');
      Dbms_DataPump.Set_Parallel(handle => :JobId, degree => 1);
      Dbms_DataPump.Start_Job(handle => :JobId);
      Dbms_DataPump.Wait_For_Job(handle => :JobId, job_state => :JobState);
    END;Now, I actually construct this using C#, so "PRTO9A" and "ALERTS" are dynamically queried for. This means that they are definitely valid schemas / tables. Also, a consequence of using C# is that the two variables :JobId and :JobState come from the .NET implementation of this DB stuff (in other words, I specify "JobId" and "JobState" as input or output variables in the C# code before I run the query... JobId is an output variable in the first statement, but an input variable in the second one).
    The result is that "JobState" comes back "STOPPED," which is documented as an error:
    When WAIT_FOR_JOB returns, the job will no longer be executing. If the job completed normally, the final status will be Completed. If the job stopped executing because of a STOP_JOB request or an internal error, the final status will be Stopped.OK, so I get a "STOPPED" back, which means there's an error. Let me check the log file (MYORACLEBACKUP.log)...
    Starting "SYSTEM"."SYS_EXPORT_TABLE_01": 
    Estimate in progress using BLOCKS method...
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 448 KB
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    . . exported "PRTO9A"."ALERTS"                           250.6 KB     316 rows
    Master table "SYSTEM"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
    Dump file set for SYSTEM.SYS_EXPORT_TABLE_01 is:
      C:\TMP\MYORACLEBACKUP1.DMP
    Job "SYSTEM"."SYS_EXPORT_TABLE_01" successfully completed at 12:30:03What the..? "... successfully completed at 12:30:03?" But I thought there was supposed to be an error?
    Any ideas?
    Thanks!
    EDIT: By the way, the "MYORACLEBACKUP1.DMP" file is actually created, and at a glance it looks valid. I haven't tried importing it yet.
    Edited by: bdzevel on Feb 11, 2013 9:38 AM

    OK I finally got around to trying "GET_STATUS." This issue looks deep.
    So, my original issue was that my "JOB_STATE" was coming back "Stopped" instead of "Completed." I did a "GET_STATUS" of a "Stopped" (but successful) job, and, as I expected, I got error_count 0, and the error table is null. Fine, so I will check the "GET_STATUS" if I get a "Stopped..."
    So I tried the complementary case, where I have a job that will fail. In this case, it's expected to get a "Stopped" status back (even though it's 'faulty' in the sense that it's ALWAYS "Stopped"). Checking the error_count, I get 0 back. WHAT!? AND the error table is STILL null! What the heck is going on?
    Here's my new SQL:
    DECLARE
      state VARCHAR2(15);
      output KU$_STATUS1010;
      errorTable KU$_LogEntry1010;
    BEGIN
      Dbms_DataPump.Add_File(handle => :JobId, filename => 'MYORACLEBACKUP_bdzevel1.dmp', directory => 'ABAT_DUMP_DIR', filetype => 1, reusefile => 1); --DMP
      Dbms_DataPump.Add_File(handle => :JobId, filename => 'MYORACLEBACKUP_bdzevel2.dmp', directory => 'ABAT_DUMP_DIR', filetype => 1, reusefile => 1); --DMP
      Dbms_DataPump.Add_File(handle => :JobId, filename => 'MYORACLEBACKUP_bdzevel.log', directory => 'ABAT_DUMP_DIR', filetype => 3); --LOG
      Dbms_DataPump.Metadata_Filter(handle => :JobId, name => 'SCHEMA_LIST', value => '''DATAPUMPUSER''');
      Dbms_DataPump.Metadata_Filter(handle => :JobId, name => 'NAME_LIST', value => '''MYTESTTABLE_FAKEEEE''');
      Dbms_DataPump.Set_Parallel(handle => :JobId, degree => 2);
      Dbms_DataPump.Start_Job(handle => :JobId);
      Dbms_DataPump.Wait_For_Job(handle => :JobId, job_state => :JobState);
      :ErrorMessage := '';
      IF upper(:JobState) = 'STOPPED' THEN
        Dbms_DataPump.Get_Status(handle => :JobId, mask => 15, timeout => NULL, job_state => state, status => output);
        errorTable := output.ERROR;
        IF errorTable IS NOT NULL AND errorTable.COUNT > 0 THEN
          FOR element in 1 .. errorTable.COUNT LOOP
            IF :ErrorMessage = '' THEN
              :ErrorMessage := :ErrorMessage || CHR(13) || CHR(10);
            END IF;
            :ErrorMessage := :ErrorMessage || TO_CHAR(errorTable(element).LOGLINENUMBER) || ': ORA' || TO_CHAR(errorTable(element).ERRORNUMBER) || ' - ' || errorTable(element).LOGTEXT;
          END LOOP;
        END IF;
        :ErrorMessage := :ErrorMessage || output.JOB_STATUS.JOB_NAME || ' ' || output.JOB_STATUS.ERROR_COUNT || ' ' || output.JOB_STATUS.STATE;
      END IF;
    END;The error I get back in both cases reads "SYS_TEXPORT_TABLE_04 0 COMPLETED" (which is in the format JOB_NAME ERROR_COUNT STATE, as you can see above), but in the latter case (a FAILED job... as you can see above, I have "MYTESTTABLE_FAKEEEE" as my table, which doesn't exist, and a consequence, the .log properly logs a failure.) I SHOULD be getting back something in output.ERROR or AT LEAST output.JOB_STATUS.ERROR_COUNT..... BUT output.ERROR is NULL and ERROR_COUNT is 0! What gives?
    P.S.> I logged an SR about this, since it looks like a pretty big issue, but maybe you guys can see something that I'm not seeing faster than the support rep.
    Edited by: bdzevel on Feb 21, 2013 1:18 PM

  • Error: [129]: transaction rolled back by an internal error:  [129] transaction rolled back by an internal error: exception 141000274: exception 141000274: TRexUtils/ParallelDispatcher.cpp:275 message not found; $message$=

    Hello Gurus,
    I have a couple of calculation views in HANA and each of them has text fields (like Employee Name, Country Name etc.).
    As part of my project requirement, I have join those two views and get all the fields that exist in them.
    When I am doing so, I am getting a weird error as shown below.
    Error: [129]: transaction rolled back by an internal error:  [129] transaction rolled back by an internal error: exception 141000274: exception 141000274:
    TRexUtils/ParallelDispatcher.cpp:275
    message not found; $message$='TSR HTKD JFSDFM'
    Please check lines: 59,
    Upon, researching further, I could see that the value 'TSR HTKD JFSDFM' is the value in text field of Employee Name.
    I did try to increase the length of the field and change the data types but nothing has worked.
    Could you please help me in getting this one resolved.
    Thanks,
    Raviteja

    Hi,
    I am exactly facing the same issue:
    Error: [129]: transaction rolled back by an internal error:  [129] transaction rolled back by an internal error: exception 141000274:
    But i found a fix :-) .....
    This may be a very late reply but it would help people who desperately searching for an answer for this issue.
    I used CAST function .. The problem is, we are selecting data from table and of course we dont know the size of the data (attribute) @ runtime. We assign the length by looking at the table attr length or view op attr length. But what happens is the junk data which exceeds the limit of the allocated space hence we get this error.
    So i used CAST function to truncate the excess junk values (may be spaces).
    Example:
    I have a ATTR view of date in the format YYYY-MM-DD which means 10 char size.
    In my CALC view I have created date OP column of VARCHAR(10) but I get the above error for no reason. Eventhoug i am 100% sure about my ATTR date would be max of 10 char my CALC view is failing @ runtime.
    So i did a CAST on date as CAST(my_date as varchar(10)) and the magic happend. It works .......
    But you need to be careful in using this because if you use CAST you may lose data. Careful. In my case i dont.
    Somebody from HANA team should look at this issue from SAP and solve this. I am sure it is a serious bug from HANA (eventhough i am using SAP HANA SP09 Rev 92 the most latest as of today !!!!!!!!!! )
    Enjoy....
    Thanks & Regards
    Prakash K

  • Transaction rolled back by an internal error

    Hello
    I am wrting a stored procedure .
    In that i wrote a while loop.
    The Requirement is even though any exception is caught it should continue.
    If ant exception is occured I am getting the error transaction rolled back by an internal error and execution exits.
    But it should continue.
    I am not using any transactions.
    Please help me.

    Hi,
    I am exactly facing the same issue:
    Error: [129]: transaction rolled back by an internal error:  [129] transaction rolled back by an internal error: exception 141000274:
    But i found a fix :-) .....
    This may be a very late reply but it would help people who desperately searching for an answer for this issue.
    I used CAST function .. The problem is, we are selecting data from table and of course we dont know the size of the data (attribute) @ runtime. We assign the length by looking at the table attr length or view op attr length. But what happens is the junk data which exceeds the limit of the allocated space hence we get this error.
    So i used CAST function to truncate the excess junk values (may be spaces).
    Example:
    I have a ATTR view of date in the format YYYY-MM-DD which means 10 char size.
    In my CALC view I have created date OP column of VARCHAR(10) but I get the above error for no reason. Eventhoug i am 100% sure about my ATTR date would be max of 10 char my CALC view is failing @ runtime.
    So i did a CAST on date as CAST(my_date as varchar(10)) and the magic happend. It works .......
    But you need to be careful in using this because if you use CAST you may lose data. Careful. In my case i dont.
    Somebody from HANA team should look at this issue from SAP and solve this. I am sure it is a serious bug from HANA (eventhough i am using SAP HANA SP09 Rev 92 the most latest as of today !!!!!!!!!! )
    Enjoy....
    Thanks & Regards
    Prakash K

  • PowerPoint - Present Online - Error starting online presentation - Cannot connect to this service. Check your network connection and try again.

    "Present Online
    Error starting online presentation
    Cannot connect to this service. Check your network connection and try again."
    On March 31, we starting experiencing this issue across our entire domain. We have not made any changes to our network configuration. We are using the same ISP, routing hardware, computer hardware, software versions and group policy settings as we were on March
    30.
    The issue appears to be related to network connectivity. 
    Here is what I have found so far:
    We have three networks in our building and two ISPs.
    Network-A uses ISP-A and is affected by the issue. Network-A is our corporate domain.
    Network-B uses ISP-B and is affected by the issue.
    Network-C uses ISP-B and is not affected by the issue.
    If I take a Network-A domain member and launch PowerPoint while connected to Network-A and ISP-A I am unable to upload PowerPoint presentations. 
    If I connect the same computer to Network-C, the issue persists.
    If I close PowerPoint, connect to Network-C, and reopen PowerPoint while connected to Network-C, I am able to upload presentations.
    A non-domain computer is affected by the issue if PowerPoint is opened while connected to Network-A or Network-B, but unaffected if PowerPoint is launched while connected to Network-C. Again, in this scenario, switching connections while PowerPoint is open
    has no effect.
    The issue appears to be caused during PowerPoint start-up and not while attempting to share a document.
    Microsoft is either unwilling or unable to find a resolution and has finally resorted to simply ignoring my calls, voicemails, emails, and ticket requests regarding this issue. Any suggestions would be greatly appreciated.
    Here is a brief description of our configuration and what I have tried so far.
    Windows Installer Version    5.0.7601.18493
    OS Details                   Microsoft Windows 7 Enterprise , SP 1, Version: 6.1.7601, Codepage: 1252, Country Code: 1, Language: 1033, System Type: x64-based PC
    Microsoft Office 365 ProPlus - en-us 
    ProductVersion 15.0.4701.1002
    License Family: OfficeO365ProPlusR_Subscription1
    License Status: 1 - LICENSED
    Intel Core i3
    4GB DDR
    ISP-A => 100mb fiber
    ISP-B => 30/50mbps down / 3/5mbps up cable
    Clearing the internet cache
    Clearing the OneDrive cache
    Adding all related office.live URLs to trusted sites
    Selecting lowest security settings for trusted sites
    Changing permissions on the .ppt file to allow full permissions to everyone
    Creating a blank PowerPoint presentation
    Changing the location of the .ppt file to the local drive's user folder
    Upgrading Office
    Repairing Office
    Downgrading Office
    Installing Skype (Microsoft recommendation)
    Leaving the domain
    Rebooting the routers and switches on Network-A
    Rebooting the router on Network-B
    Upgrading the firmware for the router on Network-B
    Disabling the firewall on Network-B
    Enabling the firewall on Network-C(in an attempt to induce the problem)

    The problem seems to have fixed itself, the computer may just have needed to be restarted.

  • Submit Back ground job with error log

    Hi Gurus
    Can anyone help with Back ground job with error log. i want put all the error logs in to 1 internal table and submit the back ground .how can i do that .please help me

    Hi reddy ,
    i am not experienced this in real scenarion .. even though i would like to give my idea
    Put your logic inside the FM and execute in in background task mode on your action button .
    call function 'Function module name' in background task
    exporting
       parameter =
    importing
       ret =
    refer the below link for more detail on executing FM as  background task
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/8f/53b67ad30be445b0ccc968d69bc6ff/frameset.htm
    Regards
    Chinnaiya P

  • Db13 in error

    Dear all,
                  I have Error in DB13 to any type of job secudle(Log back,online full backup or check data base) in failed
         SXPG_COMMAND_EXECUTE failed for BRCONNECT - Reason: x_error
         Job cancelled after system exception ERROR_MESSAGE
    Pls help...
    Regard's
    vinod

    Vinod,
    Your CI and DB are in two different host. So you need to update SXPG_COMMAND_EXECUTE rfc destination.
    For details details check the
    See note 446172 - SXPG_COMMAND_EXECUTE (program_start_error) in DB13
    Re: Brbackup offline backup failed!!!
    Re: Backup is failing when triggered from SAP level
    Thanks
    Sushil
    Edited by: Sushil Suryawanshi on Jun 29, 2009 12:55 PM

  • CRM Online errors

    Our employees are having issue using CRM Online.
    First off they all are using Dell e7740 Latitude laptop running Win 8.1 64 bit with Office 2010 Ent.and IE 11.0.9600
    When they log onto the online website the get errors when clicking on links from the menu tab. Some users get further than others before it errors out.
    The other error message is just a generic contact your CRM Admin or Microsoft.
    What version of browser works best with CRM Online?
    Why is it different users running the same Software and hardware have different errors or works?

    To resolve the back cache  and https protocol error do the following:
    1). Open IE to clean the cache:
    IE -> tools -> Internet Options -> In browsing History -> click “delete” -> select all checkboxes -> click delete
    Close IE
    2). Please press Windows Key + R copy and paste the following paths then press Enter to access these 2 folders. Delete all the files from: 
    • %systemDrive%\Windows\Prefetch
    • %temp%
    If you have the following directory delete all content here too:
    • %systemDrive%\Users\%username%\AppData\Local\Microsoft\Windows\Temporary Internet Files
    4) Add to Internet Options >Security > Trusted Sites
    https://*.dynamics.com and https://*.microsoft.com
    The only thing we did different today was delete the prefetch files.
    Thanks for every ones feedback on this.

  • DB13 Online Backup

    Hi,
    I am taking daily online backup from BRTOOLS on a disk(BACKUP SEVER).If I want to take the online backup through DB13 in the disk what is the procedure to be used(step by step)
    Server     ECC5.0
    ORACLE  9.2.0.7.0
    Regards
    AAA

    Hello All,
    I have changed the follwing parameters in the initSID.sap profile
    backup_dev_type = disk
    backup_root_dir = <disk target>
    stage_root_dir = <disk target>
    After making changes, i schedule backup in DB13 and type
    " disk " in place of tape name.
    It is working fine in IDES but not working in Development system.
    it is showing the below error log
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000013, user ID BASIS)
    Execute logical command BRARCHIVE On host EFLTDS
    Parameters: -u / -c force -p initEFD.sap -sd -v "DISK"
    BR0002I BRARCHIVE 6.40 (15)
    BR0282E Directory
    Eflbackup\BACKUP\DEVBACKUP\sapbackup not found
    BR0182E Checking parameter/option 'archive_copy_dir' failed
    BR0007I End of offline redo log processing: adzbxsem.log 2008-10-22 11.30.36
    But i am taking the backup by BRTOOLS in development system,it is working fine.
    Waiting for reply.
    Warm Regards
    AAA

  • DB13 Backup Error

    Hi,
                  I am trying to take online backup by DB13, I got the below error anyone please help this error.
    [Normal] From: BSM@backup "sap_ECC_GPR_online_full"  Time: 3/17/2011 2:06:01 AM
         OB2BAR application on "192.168.1.101" successfully started.
    BR0051I BRBACKUP 7.00 (39)
    BR0262I Enter database user name[/password]:
    BR0055I Start of database backup: beflmamh.anf 2011-03-17 02.09.11
    BR0484I BRBACKUP log file: /oracle/GPR/sapbackup/beflmamh.anf
    BR0280I BRBACKUP time stamp: 2011-03-17 02.09.11
    BR0301E SQL error -1017 at location BrDbConnect-2, SQL statement:
    'CONNECT oragpr/*********'
    ORA-01017: invalid username/password; logon denied
    BR0310E Connect to database instance GPR failed
    BR0280I BRBACKUP time stamp: 2011-03-17 02.09.11
    BR0301E SQL error -1017 at location BrDbConnect-2, SQL statement:
    'CONNECT oragpr/*********'
    ORA-01017: invalid username/password; logon denied
    BR0310E Connect to database instance GPR failed
    BR0056I End of database backup: beflmamh.anf 2011-03-17 02.09.11
    BR0280I BRBACKUP time stamp: 2011-03-17 02.09.11
    BR0054I BRBACKUP terminated with errors
    [Major] From: OB2BAR_OMNISAP@gcldevqasecc2 "OMNISAP"  Time: 03/17/11 02:09:11
         BRBACKUP /usr/sap/GPR/SYS/exe/run/brbackup -t online -d util_file -c -m all -u oragpr/********* returned 3
    [Normal] From: BMA@backup "HP:Ultrium 4-SCSI_1"  Time: 3/17/2011 2:06:44 AM
         STARTING Media Agent "HP:Ultrium 4-SCSI_1"
    BR0002I BRARCHIVE 7.00 (39)
    BR0262I Enter database user name[/password]:
    BR0006I Start of offline redo log processing: aeflmamh.cds 2011-03-17 02.09.11
    BR0484I BRARCHIVE log file: /oracle/GPR/saparch/aeflmamh.cds
    BR0280I BRARCHIVE time stamp: 2011-03-17 02.09.12
    BR0301W SQL error -1017 at location BrDbConnect-2, SQL statement:
    'CONNECT oragpr/*********'
    ORA-01017: invalid username/password; logon denied
    BR0310W Connect to database instance GPR failed
    BR0280I BRARCHIVE time stamp: 2011-03-17 02.09.12
    BR0301W SQL error -1017 at location BrDbConnect-2, SQL statement:
    'CONNECT oragpr/*********'
    ORA-01017: invalid username/password; logon denied
    BR0310W Connect to database instance GPR failed
    BR0280I BRARCHIVE time stamp: 2011-03-17 02.09.14
    BR0301W SQL error -1017 at location BrDbConnect-2, SQL statement:
    'CONNECT oragpr/*********'
    ORA-01017: invalid username/password; logon denied
    BR0310W Connect to database instance GPR failed
    BR0031I Probably the redo log sequence number of database instance GPR was reset
    BR0013W No offline redo log files found for processing
    BR0280I BRARCHIVE time stamp: 2011-03-17 02.09.16
    BR0301W SQL error -1017 at location BrDbConnect-2, SQL statement:
    'CONNECT oragpr/*********'
    ORA-01017: invalid username/password; logon denied
    BR0310W Connect to database instance GPR failed
    BR0007I End of offline redo log processing: aeflmamh.cds 2011-03-17 02.09.16
    BR0280I BRARCHIVE time stamp: 2011-03-17 02.09.16
    BR0004I BRARCHIVE completed successfully with warnings
    [Normal] From: OB2BAR_BACKINT@gcldevqasecc2 "GPR"  Time: 03/17/11 02:09:27
         Backint is started with the following parameters  backint -u GPR -f backup -i /var/opt/omni/tmp/cftmpfile_GPR -t file -c.
    [Normal] From: BMA@backup "HP:Ultrium 4-SCSI_1"  Time: 3/17/2011 2:06:48 AM
         By: UMA@backup@Changer0:0:2:1
         Loading medium from slot 7 to device Tape0:0:2:0C
    [Normal] From: OB2BAR_SAPBACK@gcldevqasecc2 "GPR"  Time: 3/17/2011 2:10:42 AM
         Starting OB2BAR Backup: 192.168.1.101:GPR.0 "SAP"
    [Normal] From: OB2BAR_SAPBACK@gcldevqasecc2 "GPR"  Time: 03/17/11 02:10:42      Starting OB2BAR Backup: 192.168.1.101:GPR.0 "SAP" 
    #SAVED 20110317.0004.00 /var/opt/omni/tmp/cntrl_GPR.dbf
    [Normal] From: OB2BAR_SAPBACK@gcldevqasecc2 "GPR"  Time: 3/17/2011 2:12:07 AM
         Completed OB2BAR Backup: 192.168.1.101:GPR.0 "SAP"
    [Normal] From: OB2BAR_SAPBACK@gcldevqasecc2 "GPR"  Time: 03/17/11 02:12:07      Completed OB2BAR Backup: 192.168.1.101:GPR.0 "SAP" 
    [Normal] From: OB2BAR_BACKINT@gcldevqasecc2 "GPR"  Time: 03/17/11 02:12:07
         Backint exits with the code (0).
    [Normal] From: BSM@backup "sap_ECC_GPR_online_full"  Time: 3/17/2011 2:09:01 AM
         OB2BAR application on "192.168.1.101" disconnected.
    [Normal] From: BMA@backup "HP:Ultrium 4-SCSI_1"  Time: 3/17/2011 2:10:26 AM
         Tape0:0:2:0C
         Medium header verification completed, 0 errors found
    [Normal] From: BMA@backup "HP:Ultrium 4-SCSI_1"  Time: 3/17/2011 2:10:48 AM
         By: UMA@backup@Changer0:0:2:1
         Unloading medium to slot 7 from device Tape0:0:2:0C
    [Normal] From: BMA@backup "HP:Ultrium 4-SCSI_1"  Time: 3/17/2011 2:11:10 AM
         ABORTED Media Agent "HP:Ultrium 4-SCSI_1"
    [Normal] From: BSM@backup "sap_ECC_GPR_online_full"  Time: 3/17/2011 2:11:10 AM
    Please help on this error.
    Best Regards,
    K.Kalees

    Hi,
    > ORA-01017: invalid username/password; logon denied
    Find this thread,
    [ORA-01017: invalid username/password; logon denied;
    Thanks
    Siva

  • Mario kart Nintendo Wii online error all the time,...

    Hi all,
    I have a problem with Nintendo's Wii Mario Kart. I never had this issue with BT Broadband ADSL, only since being on Infinity option 2. When I try to go into an online game with Mario Kart Wii it keeps coming up with an error 91010, Disconnected from data during data transmission. Error Code:-91010. I have looked it up on the internet and it must come down to an Infinity problem. I have tried going back to 802.11 b/g/n (Recommended) but that makes no difference also I have activated the DMZ Enabled with Wii and also activated ports 1-65535 on TDP/UDP but still no luck, the error keeps popping up all the time.
    Has anyone come across this problem before and resolved it?. I would like some help because its becoming very annoying and I luv having a blast on Mario kart Wii online its a real shame.
    Thanks,
    Please click on pink star to the left and say thanks if I have helped you at all!. Thank you. Home Hub Page- http://bthomehub.home/
    BT Speed test- http://www.speedtest.btwholesale.com/
    Speedtest:-http://diagnostics.bt.com/login/?workflow=Speed
    Net Connect test- http://netalyzr.icsi.berkeley.edu/index.html

    MBR123 wrote:
    Carn't believe the oldie Scoobs and the gang could not solve it, man, there was me just thinking I could get them on the job, looks like they have already tried!. I am just hoping this will solve it, be a shame if not cause it would be a waste of chrimbo saved up monies!. . Thanks though for the help. My next question would be if Wii online games are having these issues why dont BT get on the case and sort the matter!. 
    It may not fully solve it, but it WILL definitely help
    It only appears to be Mario Kart on the Wii, that's why it's so unusual - other games will also perform better as they'll be over ethernet too
    -+-No longer a forum member-+-

  • Backups/Archivelogs triggered via DB13 hitting errors at TSM(Tivoli) level.

    We are encountering problem with our redolog/online backups that are triggered
    via DB13 whereby we will
    receive this error message in the logs before a failure message:
    BKI5014E: Tivoli Storage Manager Error:
    ANS1087E (RC106) Access to the specified file or directory is denied
    We have checked with the OS side and it seems that the permissions for
    all the accesses are fine. However, when we tried to manually enter the
    BRARCHIVE/BRBACKUP command in the OS (AIX) the thing seems to work fine. Although we can trigger it manually in the OS, but we cannot track it through
    DB13, or even schedule it, as it will continue to hit the said access error.
    Thanks.

    Dear Kelvin,
    Please reply whether you were able to solve the issue of scheduling a backup from DB13 in SAP?
    We are also facing the same issue, we are able to take the backup from BRTOOLS in TSM.
    We tried changing the permissions of BRTOOLS utilities from /sapmnt/SID/exe path. Even then the backup fails with the same message, please find below the logs.
    BR0280I BRBACKUP time stamp: 2010-08-28 19.23.45
    BR0315I 'Alter database begin backup' successful
    BR0280I BRBACKUP time stamp: 2010-08-28 19.23.45
    BR0229I Calling backup utility with function 'backup'...
    BR0278I Command output of '/usr/sap/BSM/SYS/exe/run/backint -u BSM -f backup -i /oracle/BSM/sapbackup/.bedzpjrz.lst -t file -p /oracle/BSM/102_64/dbs/initBSM.utl -c':
                             Data Protection for SAP(R)
                 Interface between BR*Tools and Tivoli Storage Manager
                 - Version 6, Release 1, Modification 0.0  for AIX LF 64-bit -
                       Build: 358  compiled on Nov  4 2008
            (c) Copyright IBM Corporation, 1996, 2008, All Rights Reserved.
    BKI5014E: Tivoli Storage Manager Error:
    ANS1087E (RC106)  Access to the specified file or directory is denied
    BKI0020I: End of program at: Sat Aug 28 19:23:45 GMT06:00 2010 .+
    BKI0021I: Elapsed time: 00 sec .
    BKI0024I: Return code is: 2.
    BR0280I BRBACKUP time stamp: 2010-08-28 19.23.45
    BR0279E Return code from '/usr/sap/BSM/SYS/exe/run/backint -u BSM -f backup -i /oracle/BSM/sapbackup/.bedzpjrz.lst -t file -p /oracle/BSM/102_64/dbs/initBSM.utl -c': 2
    BR0232E 0 of 32 files saved by backup utility
    BR0280I BRBACKUP time stamp: 2010-08-28 19.23.45
    BR0231E Backup utility call failed
    BR0280I BRBACKUP time stamp: 2010-08-28 19.23.48
    BR0317I 'Alter database end backup' successful
    BR0056I End of database backup: bedzpjrz.anf 2010-08-28 19.23.45
    BR0280I BRBACKUP time stamp: 2010-08-28 19.23.48
    BR0054I BRBACKUP terminated with errors
    BR0280I BRBACKUP time stamp: 2010-08-28 19.23.48
    BR0291I BRARCHIVE will be started with options '-U -jid ALLOG20100828192343 -d util_file -c force -p initBSM.sap -cds'
    BR0280I BRBACKUP time stamp: 2010-08-28 19.23.49
    BR0292I Execution of BRARCHIVE finished with return code 5
    file permissions for BRTOOLS files,
    SAPSOLMAN:bsmadm 2> cd /sapmnt/BSM/exe
    SAPSOLMAN:bsmadm 3> ls -ltr br*
    -rwsrwxr-x    1 orabsm   dba         2132759 Feb 21 2009  brrestore
    -rwsrwxr-x    1 orabsm   dba         2785581 Feb 23 2009  brtools
    -rwsrwxr-x    1 orabsm   dba         5074068 Feb 25 2009  brarchive
    -rwsrwxr-x    1 orabsm   dba         6786275 Feb 25 2009  brconnect
    -rwsrwxr-x    1 orabsm   dba         5202913 Feb 25 2009  brbackup
    -rwsrwxr-x    1 orabsm   dba         5670503 Feb 25 2009  brrecover
    -rwsrwxr-x    1 orabsm   dba         6996331 Feb 25 2009  brspace
    SAPSOLMAN:bsmadm 4>
    Please help us in solving this error.
    Thank you
    Regards,
    Vineeth
    Edited by: Vineeth Damodar on Aug 30, 2010 1:09 PM

  • Adobe story is not going online, error "not responding", will not go online to sync

    I am on a mac book pro, latest version, I am trying to go online, work online, in order to sync with the cloud so my writing partner can see the latest draft. never had an issue before and now it won't go online. I have signed out, closed the app, signed back in, tried different wi-fi's etc etc. nothing is working and I am needing to force quit the app because it is just not responding. I get the spinning beach ball.

    Thank you but, since I did that when I try to sign in it says "ERROR: Sorry, your Story free subscription does not allow access to this application. Please upgrade your subscription." Then my options below are cancel or upgrade now.  I don't want to upgrade. And I still don't know if my script is still there or not. A lot of times I've had to work on it offline. Even though I saved it, has it been deleted? Please tell me it hasn't been. I log on to my account on the adobe sight and all my work is gone. Same with the app version.
    What do I do now? I've never had this problem before and it's a little frustrating, off putting and scary. (Scary as in I've lost all my work.)

Maybe you are looking for

  • How to get your contacts to your new phone

    These days, most of us live ane die by our mobile phones - our personal and business lives revolve around them; and yet technology moves so fast that our phones become outdated and are replaced so quickly. Luckily, the days when buying a new phone me

  • Can Mavericks run a screensaver from Snow Leopard?

    Hi all, This morning I was running on Snow Leopard (10.6.8), and today I downloaded and installed Mavericks (10.9.4). The screensaver options are a bit different, and I don't like them as much as the Snow Leopard ones. I was using a screensaver that

  • Problem with simbl_ps plugin

    I seldom use Safari, but occasionally I run into an application update that's defaulted to Safari (v5.1 running in Lion).  I receive an error message stating that the SIMBL_PS plugin was not installed because it hasn't been tested with Safari 5.1.  I

  • Creating a custom component is causing a strange scoping issue

    I am a fairly new user to Flash and Actionscript, but I have a fair amount of experience working with C and Java. I'm currently working with Actionscript 2 in Macromedia Studio 8. I was trying to create a new component for a project I am working on,

  • Adding one more participant to approve the task in workflows

    Hi All, I'm having a requirement of adding the adding one more workflow user for approving the task. How to add one more workflow user in the human and allow him to approve the task which has been already approved by another workflow user, means it i