RMAN Backup job fails after changing sys, system passwords

Hello Oracle community,
11.1g
After we changed the passwords for sys, system and sysman the backup jobs fails. this is my error log:
Recovery Manager: Release 11.1.0.7.0 - Production on Mo Aug 30 11:16:29 2010
Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
RMAN>
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
ORA-12532: TNS: Ungültiges Argument
RMAN>
Echo einstellen ein
RMAN> set command id to 'BACKUP_MEGALON.INT_083010111617';
Befehl wird ausgeführt: SET COMMAND ID
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: Fehler bei set Befehl auf 08/30/2010 11:16:29
RMAN-06171: Nicht bei Zieldatenbank angemeldet
RMAN> backup device type disk tag 'BACKUP_MEGALON.INT_083010111617' database;
Starten backup um 30.08.10
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: Fehler bei backup Befehl auf 08/30/2010 11:16:29
RMAN-06171: Nicht bei Zieldatenbank angemeldet
RMAN> backup device type disk tag 'BACKUP_MEGALON.INT_083010111617' archivelog all not backed up;
Starten backup um 30.08.10
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: Fehler bei backup Befehl auf 08/30/2010 11:16:29
RMAN-06171: Nicht bei Zieldatenbank angemeldet
RMAN> exit;
Recovery Manager abgeschlossen.
Ikrischer

Hello Tychos,
I am able to make a sqlplus connection, but your hint send me in the correct direction. I had a special character "@" in the password and I think that was the reason for my problems with RMAN.
Ikrischer

Similar Messages

  • Change sys/system password

    Hello all,
    I would like to change our sys and system password. In this context what I have to consider.
    Thanks for your help.
    Regards
    Sandra Koenig

    Hi,
    That's true you might need to check the scheduled script where password is hard-coded. I hv one point over here. How to change the password for SYS..? Is it by deleting & recreating password file with orapw utility or do we hv any other way to do it.
    Regards,
    Kamesh Rastogi

  • Sql Agent Job Failed after changing job name to sa Error(The job owner does not have access )

    I changed  job owner to sa and it worked well, But now it fails saying job owner does not have sever access and shows job owner as previous owner Name even after it changed to sa?
    Help......

    EXEC msdb.dbo.sp_update_job @job_id=N'7d4d4040-b79c-4022-9d19-e449497ab60e', 
    @owner_login_name=N'sa'
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • "Login failed" after changing administrative user-password.

    Hello,
    we are administering 20 MacBook Pro (Pupil´s PCs) via Remote Desktop on the 21st MacBook Pro (Teacher´s PC).
    On all pupil´s notebooks there are 2 Accounts: pupil = protected via Apple child-proof-lock and teacher = administrative account with all access rights.
    Now the teacher´s password for all 20 pupil´s notebooks leaked . We have set a new teacher-password on all 20 pupil´s notebook - the pupils account did not get a new password.
    But now we can´t connect form the administrative Remote Desktop Console on the 21st teacher´s notebook to the pupil´s notebook anymore. An error message appears: "The login at PC-Name failed." ... and we can´t find a way to set the new administrative password for the 20 pupil´s notebooks in Remote Desktop Console. When we change the passwords for the administrative teacher-accounts on the 20 pupil´s notebooks back to the old (leaked) one, the remote desktop function is working.
    The next problem is, that we can´t change the main Remote Desktop Password on the teacher´s notebook, because nobody knows theses password. It was saved in the keystore (bunch of keys = "Schlüsselbund" in german!) - so we can login to the console without typing it in. But when we try to change the Remote Desktop password, we have to give the "forgotten" password!
    We are using Remote Desktop V3.5.3 464.3 - unlimited license.
    Every help is very welcome...
    Regards from Germany,
    Goldi2005

    If I understand correctly, the machines have a new password, but ARD has the old one?
    Assuming they are all the same account name and password, you can select all of the machines in the ARD list, do a Get Info (Cmd-I) and, under the Attributes tab, change the password for all 20 machines.

  • Tracking RMAN Backup job details

    Version:11.2.0.3/Solaris 11
    To track RMAN backup job details , what dictionary view/dyn.performance view do you use ?
    In our shop , we use incrementally updated backup (incremental merge). To find the details of previous RMAN Jobs, I tried using
    v$rman_status
    and
    v$rman_backup_job_details
    But the details provided by these 2 views don't match. For example, on 26th of June 2013, there was an Incremental backup and an archivelog backup. As per v$rman_status , both of them took 61 minutes (46 + 15)
    According to v$rman_backup_job_details, backup jobs took 96 minutes .It doesn't seem to provide all info on archive log bkp though.
    The start_time and end_time provided by both of these views don't math either !
    col starttime format a25
    col endtime format a25
    select status, object_type, to_char(start_time,'dd/MON/yyyy:hh:mi:ss') as starttime,
    to_char(end_time,'dd/MON/yyyy:hh:mi:ss') as endtime ,
    to_number(end_time-start_time)*24*60 duration_minutes
    from sys.v$rman_status where start_time > trunc(sysdate) - 20 and operation = 'BACKUP'
    order by end_time desc;
    STATUS                  OBJECT_TYPE   STARTTIME                 ENDTIME                   DURATION_MINUTES
    FAILED                  ARCHIVELOG    07/JUN/2013:08:47:44
    COMPLETED               ARCHIVELOG    26/JUN/2013:06:49:16      26/JUN/2013:07:36:14            46.9666667
    COMPLETED               DB INCR       26/JUN/2013:06:33:18      26/JUN/2013:06:49:16            15.9666667
    COMPLETED               ARCHIVELOG    25/JUN/2013:06:50:55      25/JUN/2013:07:58:01                  67.1
    COMPLETED               DB INCR       25/JUN/2013:06:25:06      25/JUN/2013:06:50:55            25.8166667
    COMPLETED               ARCHIVELOG    24/JUN/2013:06:15:42      24/JUN/2013:07:07:54                  52.2
    COMPLETED               DB INCR       24/JUN/2013:06:01:09      24/JUN/2013:06:15:42                 14.55
    COMPLETED               ARCHIVELOG    23/JUN/2013:09:47:48      23/JUN/2013:10:01:19            13.5166667
    COMPLETED               DB INCR       23/JUN/2013:09:40:27      23/JUN/2013:09:47:48                  7.35
    COMPLETED               ARCHIVELOG    22/JUN/2013:07:23:18      22/JUN/2013:07:41:29            18.1833333
    COMPLETED               DB INCR       22/JUN/2013:07:15:35      22/JUN/2013:07:23:17                   7.7
    COMPLETED               ARCHIVELOG    21/JUN/2013:07:30:33      21/JUN/2013:09:05:50            95.2833333
    COMPLETED               DB INCR       21/JUN/2013:06:39:35      21/JUN/2013:07:30:33            50.9666667
    COMPLETED               ARCHIVELOG    20/JUN/2013:07:35:54      20/JUN/2013:09:25:03                109.15
    COMPLETED               DB INCR       20/JUN/2013:06:55:08      20/JUN/2013:07:35:54            40.7666667
    COMPLETED               ARCHIVELOG    19/JUN/2013:07:20:10      19/JUN/2013:08:27:28                  67.3
    COMPLETED               DB INCR       19/JUN/2013:07:00:02      19/JUN/2013:07:20:10            20.1333333
    COMPLETED               ARCHIVELOG    18/JUN/2013:07:27:30      18/JUN/2013:09:19:50            112.333333
    COMPLETED               DB INCR       18/JUN/2013:07:02:09      18/JUN/2013:07:27:30                 25.35
    COMPLETED               ARCHIVELOG    17/JUN/2013:07:42:20      17/JUN/2013:08:40:29                 58.15
    COMPLETED               DB INCR       17/JUN/2013:07:22:29      17/JUN/2013:07:42:20                 19.85
    COMPLETED               ARCHIVELOG    17/JUN/2013:06:28:16      17/JUN/2013:07:42:44            74.4666667
    COMPLETED               DB INCR       17/JUN/2013:01:57:49      17/JUN/2013:06:28:11            270.366667
    COMPLETED               ARCHIVELOG    16/JUN/2013:02:18:02      16/JUN/2013:04:22:26                 124.4
    COMPLETED               DB INCR       16/JUN/2013:01:48:18      16/JUN/2013:02:18:02            29.7333333
    COMPLETED               ARCHIVELOG    14/JUN/2013:07:27:44      14/JUN/2013:08:40:53                 73.15
    COMPLETED               DB INCR       14/JUN/2013:07:01:19      14/JUN/2013:07:27:43                  26.4
    COMPLETED               ARCHIVELOG    13/JUN/2013:06:56:13      13/JUN/2013:07:47:50            51.6166667
    COMPLETED               DB INCR       13/JUN/2013:06:42:11      13/JUN/2013:06:56:13            14.0333333
    COMPLETED               ARCHIVELOG    12/JUN/2013:07:12:43      12/JUN/2013:08:12:10                 59.45
    COMPLETED               DB INCR       12/JUN/2013:06:45:51      12/JUN/2013:07:12:43            26.8666667
    COMPLETED               ARCHIVELOG    11/JUN/2013:07:21:36      11/JUN/2013:08:46:11            84.5833333
    COMPLETED               DB INCR       11/JUN/2013:06:52:29      11/JUN/2013:07:21:36            29.1166667
    COMPLETED               ARCHIVELOG    10/JUN/2013:07:04:49      10/JUN/2013:07:55:15            50.4333333
    COMPLETED               DB INCR       10/JUN/2013:06:49:10      10/JUN/2013:07:04:49                 15.65
    COMPLETED               ARCHIVELOG    09/JUN/2013:08:10:13      09/JUN/2013:09:04:10                 53.95
    COMPLETED               DB INCR       09/JUN/2013:07:50:24      09/JUN/2013:08:10:13            19.8166667
    COMPLETED               ARCHIVELOG    08/JUN/2013:07:37:09      08/JUN/2013:08:33:58            56.8166667
    COMPLETED               DB INCR       08/JUN/2013:07:17:56      08/JUN/2013:07:37:09            19.2166667
    COMPLETED               ARCHIVELOG    07/JUN/2013:08:32:01      07/JUN/2013:09:34:11            62.1666667
    COMPLETED               DB INCR       07/JUN/2013:07:36:27      07/JUN/2013:08:32:01            55.5666667
    COMPLETED               ARCHIVELOG    07/JUN/2013:08:48:10      07/JUN/2013:11:28:14            160.066667
    42 rows selected.
    -- Output of v$rman_backup_job_details
    select status, input_type,
    to_char(start_time,'dd/mm/yyyy:hh:mi:ss') as starttime,
    to_char(end_time,'dd/mm/yyyy:hh:mi:ss') as endtime,
    to_number(end_time-start_time)*24*60 duration_minutes
    From v$rman_backup_job_details
    where start_time > trunc(sysdate) - 20
    order by end_time desc;
    STATUS                  INPUT_TYPE    STARTTIME           ENDTIME             DURATION_MINUTES
    FAILED                  ARCHIVELOG    07/06/2013:08:47:44
    COMPLETED               DB INCR       26/06/2013:06:00:09 26/06/2013:07:36:14       96.0833333
    COMPLETED               DB INCR       25/06/2013:06:00:08 25/06/2013:07:58:01       117.883333
    COMPLETED               DB INCR       24/06/2013:06:00:09 24/06/2013:07:07:54            67.75
    COMPLETED               DB INCR       23/06/2013:08:07:56 23/06/2013:10:01:19       113.383333
    COMPLETED               DB INCR       22/06/2013:06:00:10 22/06/2013:07:41:29       101.316667
    COMPLETED               DB INCR       21/06/2013:06:00:12 21/06/2013:09:05:50       185.633333
    COMPLETED               DB INCR       20/06/2013:06:00:12 20/06/2013:09:25:03           204.85
    COMPLETED               DB INCR       19/06/2013:06:00:11 19/06/2013:08:27:28       147.283333
    COMPLETED               DB INCR       18/06/2013:06:00:16 18/06/2013:09:19:50       199.566667
    COMPLETED               DB INCR       17/06/2013:06:00:13 17/06/2013:08:40:29       160.266667
    COMPLETED               DB INCR       16/06/2013:06:04:02 17/06/2013:07:42:44            818.7
    COMPLETED               DB INCR       15/06/2013:06:05:12 16/06/2013:04:22:26       617.233333
    COMPLETED               DB INCR       14/06/2013:06:00:09 14/06/2013:08:40:53       160.733333
    COMPLETED               DB INCR       13/06/2013:06:00:09 13/06/2013:07:47:50       107.683333
    COMPLETED               DB INCR       12/06/2013:06:00:10 12/06/2013:08:12:10              132
    COMPLETED               DB INCR       11/06/2013:06:00:17 11/06/2013:08:46:11            165.9
    COMPLETED               DB INCR       10/06/2013:06:00:14 10/06/2013:07:55:15       115.016667
    COMPLETED               DB INCR       09/06/2013:06:00:10 09/06/2013:09:04:10              184
    COMPLETED               DB INCR       08/06/2013:06:00:09 08/06/2013:08:33:58       153.816667
    COMPLETED               DB INCR       07/06/2013:06:00:19 07/06/2013:09:34:11       213.866667
    COMPLETED               ARCHIVELOG    07/06/2013:08:48:10 07/06/2013:11:28:14       160.066667
    22 rows selected.

    When I run an full/incremental backup with archivelog it only shows as one job in v$rman_backup_job_details.  Only if I explicitly run just a backup archivelog all in RMAN does it show up separately as an ARCHIVELOG backup in v$rman_backup_job_details.
    rman_status shows the individual parts of the jobs.  For example for a full backup it shows the db backup and the archivelog backup.
    The start and end time in rman_status should match up with $rman_backup_job_details.
    Lets take the 25th as an example:
    In man_backup_job_details
    STATUS                  INPUT_TYPE    STARTTIME           ENDTIME             DURATION_MINUTES
    COMPLETED               DB INCR       25/06/2013:06:00:08 25/06/2013:07:58:01       117.883333
    In v$man_status:
    STATUS                  OBJECT_TYPE   STARTTIME                 ENDTIME                   DURATION_MINUTES
    COMPLETED               ARCHIVELOG    25/JUN/2013:06:50:55      25/JUN/2013:07:58:01                  67.1
    COMPLETED               DB INCR       25/JUN/2013:06:25:06      25/JUN/2013:06:50:55            25.8166667
    You need to view your logfiles to see what rman was doing between 6:00:08 when the job started and 06:25:06 when the incremental backup started.
    You can see that the end time is the same in both views.
    Not easy to explain but I hope that helps.

  • Which views have RMAN backup jobs information?

    Hi there,
    I use EM to schedule the db backup using RMAN.
    I can view the jobs in the EM.
    But I can not find out which views have RMAN backup jobs information in sqlplus.
    like dba_scheduler_jobs.
    Your advice will be appreciated.
    Thanks,
    SZ

    Hi,
    V$RMAN_STATUS - Shows the success/failure status of all recently completed RMAN jobs.
    V$RMAN_OUTPUT
    Displays messages reported by an RMAN job in progress
    If you want to monitor then go the following :-
    Monitoring RMAN Job Progress :- view V$SESSION_LONGOPS.
    first Step :-
    Before starting the job, create a script file (called, for this example, longops) containing the following SQL statement:
    SELECT SID, SERIAL#, CONTEXT, SOFAR, TOTALWORK,
    ROUND(SOFAR/TOTALWORK*100,2) "%_COMPLETE"
    FROM V$SESSION_LONGOPS
    WHERE OPNAME LIKE 'RMAN%'
    AND OPNAME NOT LIKE '%aggregate%'
    AND TOTALWORK != 0
    AND SOFAR <> TOTALWORK
    After connecting to the target database and, if desired, the recovery catalog database, start an RMAN job. For example, enter:
    RESTORE DATABASE;
    While the job is running, start SQL*Plus connected to the target database, and execute the longops script to check the progress of the RMAN job. If you repeat the query while the restore progresses, then you see output such as the following:
    SQL> @longops
    SID SERIAL# CONTEXT SOFAR TOTALWORK %_COMPLETE
    8 19 1 10377 36617 28.34
    SQL> @longops
    SID SERIAL# CONTEXT SOFAR TOTALWORK % COMPLETE
    8 19 1 21513 36617 58.75
    Cheers
    Pavan Kumar N

  • Speeding up RMAN backup job

    Hi,
    Is there anyway to increase the speed of the RMAN backup job where the job is already started running?
    Regards,
    007

    007 wrote:
    Hi CKPT,
    I am using Oracle Database 11g(11.2.0.1).
    Regards,
    0071) If your backup is not streaming to tape, then make sure that the RATE parameter is not set on the
    ALLOCATE CHANNEL or CONFIGURE CHANNEL commands.
    2) Check init.ora/spfile parameters and confirm if async IO is configured:
    DISK_ASYNCH_IO=TRUE (or defaulted): native async io is assumed to be in use
    DISK_ASYNCH_IO=FALSE and DBWR_IO_SLAVES > 1: async io is simulated with disk IO slaves
    BACKUP_TAPE_IO_SLAVES=TRUE: tape IO slave is used
    DB_WRITER_PROCESSES - if >1 this is NOT compatible with DBWR_IO_SLAVES > 1
    3) If You Fail to Allocate Shared Memory, Set LARGE_POOL_SIZE
    LARGE_POOL_SIZE = number_of_allocated_channels *
    (16 MB + ( 4 * size_of_tape_buffer ) )
    4) Allocate 4 channels if backing up to disks, increase it further if required.
    5) Use rman backup operation during off business hours, to give more resource to rman jobs.

  • Logshippin backup job failed

    Hi team,
    Logshipping backups jobs failed ERROR :
    2012-11-22 05:40:21.52 *** Error: Could not retrieve backup settings for primary ID '92dcbd1e-2cd5-4307-ba43-eb8e3185370e'.(Microsoft.SqlServer.Management.LogShipping) ***
    2012-11-22 05:40:21.52 *** Error: Failed to connect to server IP-0A7653F2.(Microsoft.SqlServer.ConnectionInfo) ***
    2012-11-22 05:40:21.52 *** Error: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured
    to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)(.Net SqlClient Data Provider) ***
    2012-11-22 05:40:21.53 ----- END OF TRANSACTION LOG BACKUP   -----
    Please suggest us.
    Tx
    subu

    Is there any changes in server or network setting?
    Is it working before or its a new setup?
    There are many reasons of SQL server connectivity issue. But refer a small checklist that helps to find out the real cause of connectivity issue.
    1. Check SQL services are running
    2. Check SQL Browser service is running
    3. Check remote connections are enabled
    4. Network connectivity between database & application servers by TRACERT command
    5. Check TCP/IP protocol enabled at SQL server
    6. Check talent connectivity – telnet <IP address> <port no on SQL server running>
    7. Check UDP port 1434 is open or not on SQL Server
    8. Check firewall is running or not Check
    9. If firewall running, SQL Server & UDP port must be added in exception in firewall
    http://mssqlfun.com/2012/09/28/check-list-for-sql-server-connectivity-issue/ 
    Regards,
    Rohit Garg
    (My Blog)
    This posting is provided with no warranties and confers no rights.
    Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread.

  • RMAN backup job showing problems

    We have scheduled RMAN backup jobs for Oracle full backups & incremental level 0 & level 1 backup. Among the recent status for jobs, I have found problems for incremental 0 backup for 2nd Dec ’13 and incremental 1 backup for 6th Dec’13. I would elaborate as below:
    For 2nd Dec ’13:
    The messages showing are-
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 12/02/2013 01:02:41
    ORA-19502: write error on file "/orabackup/rman/snlprod/data_files/7voqfb9a_1_1", block number 763264 (block size=8192)
    ORA-27072: File I/O error
    For 6th Dec’13:
    The messages showing are-
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 12/06/2013 01:12:00
    ORA-19502: write error on file "/orabackup/rman/snlprod/data_files/8moqpt4r_1_1", block number 1135616 (block size=8192)
    ORA-27072: File I/O error
    Request you to please help me with the reason for these error messages.
    I hope, my question is clear.
    Please revert with the reply to my query.
    Regards

    Hi,
    You should look at your systems logs (/var/log/messages on linux, errpt on AIX) to see which error you have exactly at the OS level.
    As Sybrand_b said, it is an error while writing a block on disk, so either a filesystem full or a corrupted block on disk.
    Do you have additional error message like follows?
    OSD-04008: WriteFile() failure, unable to write to file
    O/S-Error: (OS 112) There is not enough space on the disk
    Regards,
    Joseph

  • RMAN backup job status not showing in OEM

    Hi, I have created an RMAN backup job and scheduled it through OEM to run daily. The first run of this backup job completed today - however I do not see any entry for the job in OEM through SERVER - ORACLE SCHEDULER - JOBS
    A lot of scheduler jobs are listed but not my backup job.
    Has anyone else experienced this ?

    Duplicate post. Please do not add to this thread.

  • DPM 2012 R2 Backup job FAILED for some Hyper-v VMs and Some Hyper-v VMs are not appearing in the DPM

    DPM 2012 R2  Backup job FAILED for some Hyper-v VMs
    DPM encountered a retryable VSS error. (ID 30112 Details: VssError:The writer experienced a transient error.  If the backup process is retried,
    the error may not reoccur.
     (0x800423F3))
    All the vss Writers are in stable state
    Also Some Hyper-v VMs are not appearing in the DPM 2012 R2 Console When I try to create the Protection Group please note that they are not part of cluster.
    Host is 2012 R2 and The VM is also 2012 R2.

    Hi,
    What update rollup are you running on the DPM 2012 R2 server ?  DPM 2012 R2 UR5 introduced a new refresh feature that will re-enumerate data sources on an individual protected server.
    Check for VSS errors inside the guests that are having problems being backed up.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Automating RMAN backup jobs in Windows

    First off: THANK YOU to Ahmer Mansoor, EdStevens, and jgarry for helping me get my RMAN backup jobs up and running in this thread: Oracle 10g on Windows Server off-line database backup - a few questions You were a big help and provided very valuable advice!
    Now I'd like to automate it. My plan is below - please let me know what you think. The four files will be run in this order.
    ShutdownDB1.bat
    set oracle_sid = pldg
    C:\oracle\product\10.2.0\bin\sqlplus.exe /nolog @c:\oraclebackup\shutdowndb2.sql
    ShutdownDB2.sql (called by the previous batch file)
    set echo on
    spool C:\oraclebackup\ShutdownDB.log
    connect /@pledgemaker as sysdba
    shutdown immediate
    spool off
    exit<Here there will be a thirty minute window or so while I XCOPY the Oracle Inventory and Oracle Home directories. I'll only do this about once a week or so.>
    RMANBackup1.bat
    set oracle_sid=pldg
    C:\oracle\product\10.2.0\BIN\rman.exe target / cmdfile = 'c:\oraclebackup\rmanbackup2.scr' log = 'c:\oraclebackup\RMANBackup.log'
    RMANBackup2.scr (called by the previous batch file)
    startup mount
    backup database
    alter database open
    exit

    Ahmer Mansoor wrote:
    why shutting down from sqlplus ?
    You can include shutdown immediate in the RMANBackup2.scr file and remove the ShutdownDB1.bat and ShutdownDB2.sql.Okay, so how about just this?
    RMANBackup1.bat
    set oracle_sid=pldg
    set echo off
    C:\oracle\product\10.2.0\BIN\rman.exe target / cmdfile = 'c:\oraclebackup\rmanbackup2.bat' log = 'c:\oraclebackup\RMANBackup.log'
    RMANBackup2.bat
    RUN {
         shutdown immediate;
         startup mount;
         backup database;
         alter database open;
         exit;> }
    exit;

  • How to recreate dbconsole (Oracle10g ) after change SYS password?

    Hi all,
    would like to know how to recreate dbconsole after change SYS password? is there any links i can refer?
    Thanks
    Rgds,
    Nonie

    You don't need to recreate the console after changing the SYS password, it is not required. Once you have changed the sys password, the only two tasks you'll may have to do are:
    1. Connect to the DB Control Console with the new password (mandatory, obviously).
    2. Change the preferred credentials, in case you have stored the sys password as preferred credentials for your database.
    Console repository and EM configuration have to be rebuilt only when there are connectivity conditions that have changed, such as host name change, or IP address change, which happens when you get your IP address by means of a DHCP server.
    Are you currently facing some issue, besides the log in with new credentials, when attempting to start services?
    One more thing I could guess you are working on a 10gR?? (1 or 2) on an unknown platform (unix, windows???) please specify.
    ~ Madrid

  • Failed in changing sys password

    Dear Experts,
    Loged on as DBA I perform the following:
    alter user sys identified by my_new_strong_pass
    Trying then to log on as sys using this new pass, the pass is said not to be correct.
    I'm running 9iR2. More (even if sys and system are not comparable) I can change the system password and log on corretly afterwards.
    Any idea is appreciated.
    Regards,
    Guillaume

    You are definitely right. I did so and it worked but the pb is I can't stay with SQLNET.AUTHENTICATION_SERVICES=(NTS) because using dba studio I get a "shared memory realm not available" if I try to restart the DB once stopped for any reason.
    I need to set back to SQLNET.AUTHENTICATION_SERVICES=none. This behavior is new following the migration of the servers into AD. Buit keeping this "none" setting prevents me from connecting using Dba studio or Toad.
    Did one of you already experience such a behavior of the DB ?
    I don't have the same issue with the other instance hosted on the server, I mean connected as DBA I can change the pass of sys under Toad and connect with the new password keeping the setting to "none".
    Best Regards,
    Guillaume
    Message was edited by:
    [email protected]

  • Backup Job Fails

    Dear All,
    I received an error in maintenace plan regarding the backup Job Fails.
    Executed as user: IPROINDIA\sqlservice. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 64-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  1:30:27 AM  Could not load
    package "Maintenance Plans\Daily_BACKUP" because of error 0xC0014062.  Description: The LoadFromSQLServer method has encountered OLE DB error code 0x80004005 (Login timeout expired).  The SQL statement that was issued has failed. 
    Source:   Started:  1:30:27 AM  Finished: 1:30:43 AM  Elapsed:  15.297 seconds.  The package could not be loaded.  The step failed.
    Anyone please Help What is the issue

    Can you log in as PROINDIA\sqlservice to SQL Server and issue BACKUP DATABASE dbname ........? Still
    have a error?
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

Maybe you are looking for

  • JMF-based applet can not detect audio devices on Vista (?)

    Hi, As many people reported, I encountered the same issue - CaptureDeviceManager.getDeviceList does not detect any audio device on IE/Vista. Here is my testing environment: HP XW4600, RealTek HD Audio onboard sound card, Vista SP1 (Business, Home Pre

  • Does anyone know if the Toshiba 240GB 1.8" MK2431GAH Hard Drive will work in the 4th gen iPod Photo?

    I've been considering buying a Toshiba 240GB 1.8" MK2431GAH Hard Drive for my 4th gen iPod Photo.  Does anyone have any information about this product and if it will work?  Would I have to also get a thicker back panel?

  • File Name Extension For Applications:

    ......on OS 9????????????? I am organizing lots of files by file extension. I put the similar files into their labeled folder. DMG files are in a "DMG" labeled folder. OS X's applications are in a folder called "APP" for example. But what is the appl

  • Can't open Word files with Document To Go

    I have installed Document To Go but I can't open files from word. When I open the files there are some messenge at the screen said "This application Word To Go has attempted to open a coonection to a location inside the firewall and outside the firew

  • Find/replace window in Mac OS - how to attach to main document window?

    At work I use Windows and the find/replace window is part of the main document window. At home, I use Mac OS and the find/replace window is a separate floating window which is annoying because it means I'm constantly dragging it out of my way...is th