ORA-00257 connecting

My team gets this error when they connect

I backed up with RMAN

can I perform a
restore database 
in RMAN?

Please guide me

Thank you

Salvation;

1. What is your version of Db and OS?
2. what kind of grades alert.log
3. destination of the newspaper archive has free space?

Please see:
Connection to SQL * Plus generates ORA-00257: archiver is stuck [121927.1 ID]
How to troubleshoot the ORA-00257: archive is stuck in 10g error? [278308.1 ID]

Respect of
HELIOS

Tags: Database

Similar Questions

  • 1016: could not connect to the database: Oracle returned ORA-00257: archiver e

    Dear friends,

    Receive the above error.

    Removed my old ARC files to another drive and now the error again.

    How can I go about it.

    Please advice.

    Thank you!

    Note: I use Oracle 10 g on a Windows platform

    Published by: user645399 on July 26, 2012 18:36

    After 1000 posts, you need to understand that 10g is not a version number, but a marketing label. That's what says the error message,

    ORA-00257: archiver error. Connect internal only, until freed.
    
    Cause: The archiver process received an error while trying to archive a redo log. If the problem is not resolved soon, the database will stop executing transactions. The most likely cause of this message is the destination device is out of space to store the redo log file.
    
    Action: Check the archiver trace file for a detailed description of the problem. Also, verify that the device specified in the initialization parameter archive_log_dest is set up properly for archiving.
    

    If you simply deleted files using the command o/s, it don't will not update the control file that these files are no longer available and space mapped by them must be released. If you must use cross-checking of the RMAN command to confirm the deletion and mark the file as expired and then you will have to issue delete expired . Apart from this, the only option would be to add more space to the destination where you store the archive logs.

    HTH
    Aman...

  • ORA-00257: archiver error. Connect internal only, until that releases

    Hi all

    From the connection to my 10g database, I encounter the error ORA-00257: archiver error. Connect internal only, until released by.

    How to connect internally and to solve this problem step by step.

    Kind regards
    Stephen

    Dollongo wrote:
    Hi all

    From the connection to my 10g database, I encounter the error ORA-00257: archiver error. Connect internal only, until released by.

    How to connect internally and to solve this problem step by step.

    Kind regards
    Stephen

    Your disk space or the flash recovery area is full, delete the old archivelogs or backup them and then perform

    rman target /
    crosscheck archivelog all;
    delete expired archivelog all;
    

    or connect with sqlplus

    sqlplus "/as sysdba"
    show parameter db_recovery_file_dest_size
    alter system set db_recovery_file_dest_size=
    alter system switch logfile;
    
  • ORA-00257

    I'm confused by this.  It looks outside the mistakes EM constants, everything seems fine.  What else can I check?  What Miss me?  I have several other instances that are not throwing this error.  It's the unique.  Files log and trace of alert are clean.  Thanks in advance.

    The error I receive by e-mail:

    Unable to connect to the database instance: ORA-00257: archiver error. Connect internal only, until this just released. (DBD ERROR: OCISessionBegin).


    Archive logs is generated:

    RMAN > list archivelog all;

    List copies of archived newspapers

    Thrd Seq S key low time name

    ------- ---- ------- - --------- ----

    105-1-105 a 24 April 15 /livedbs/oracledb/stedy/arch/arch_1_105_877706003.arc

    106 1 106 a /livedbs/oracledb/stedy/arch/arch_1_106_877706003.arc 24 April 15

    107-1-107 a 24 April 15 /livedbs/oracledb/stedy/arch/arch_1_107_877706003.arc

    108 1 108 a /livedbs/oracledb/stedy/arch/arch_1_108_877706003.arc 24 April 15

    109-1-109 a 24 April 15 /livedbs/oracledb/stedy/arch/arch_1_109_877706003.arc

    110-1-110 a 24 April 15 /livedbs/oracledb/stedy/arch/arch_1_110_877706003.arc

    111-1-111 a /livedbs/oracledb/stedy/arch/arch_1_111_877706003.arc 24 April 15

    Check the size of the files in the destination directory.

    You say that you get the message of EM, but is not in the journal alerts?  I wonder if either is misconfigured or otherwise, you're looking to the wrong database (and if you have set to one of the other databases of FRA this makes more sense too).  You can view all the logs of the em.  You might get a clue as to the location of women with emctl status dbconsole.

  • Ora-00604,Ora-00600,Ora-1652,Ora-1653,Ora-00257 errors

    Hi all

    I get the alerts below in my Oracle 9i database.

    ORA-00604: an error has occurred at the SQL level recursive 3
    ORA-00600: internal error code, arguments: [kghpih:ds],]
    ORA-1652: unable to extend segment temp of 128 in tablespace TS_PHDB_5
    ORA-1653: impossible to extend the T49XPWM table. 128 in tablespace TS_PHDB_5 TMP_PD_VALUES
    ORA-1652: unable to extend segment temp of 128 in tablespace TS_PHDB_16
    ORA-00257: archiver error. Connect internal only, until this just released.
    ORA - 604 marked during: ALTER DATABASE CLOSE NORMAL...

    Josiane

    This error does not necessarily indicate whether or not you have enough space
    in the tablespace, it simply indicates that Oracle could not find a fairly large area of free
    contiguous space where to fit the next measurement.

    Add datafile to your table space.

    Edited by: Asad99 April 1, 2013 03:59

  • How to upgrade more than 5 million records without error ORA-00257:

    Hello

    I need to update some of the columns in my table which is contains approximately 5 million records
    I already tried this

    Update AAA_CDR
    Set RoamFload = Null;

    but the problem is that I have the error message ("ORA-00257: archiver error.") Connect internal only, until this that released.) and the update consume about 6 hours with no results,

    can I make orders (Alter system set db_recovery_file_dest_size = 50G) and the problem resolved.

    but I need to be updated about 15 columns of this table to be null, what should I do to overcome this message and update the table within a reasonable


    Please help me,

    Hello

    You can consider the following option.

    1. create a new table AAA_CDR_BKP as being equal to the structure of table AAA_CDR

    
    Create Table AAA_CDR_BKP as
    Select * from AAA_CDR where 1=2;
    

    2. check the original array (AAA_CDR) as of the clues in this regard. Make sure you take the DDL of these indices, because you will need it later.

    3. now you can insert records from AAA_CDR to AAA_CDR_BKP

    
    Insert /*+APPEND */ into AAA_CDR_BKP
    select col1,col2,col3,null,null,null,null,null,col9,null,col11
    from AAA_CDR;
    
    Commit;
    

    where you will pass nulls for the required columns. Also make sure you have space on the tablespace as equal to table AAA_CDR

    You can get the size of the table in

    
    select bytes/(1024*1024*1024) size_in_GB from user_segments where segment_name = 'AAA_CDR';
    

    Once finished insert please post the transaction.

    4 delete the index (if any) of the original table (AAA_CDR)
    5. rename the original in AAA_CDR_ORG table
    6. Rename AAA_CDR_BKP to AAA_CDR
    7 run the DDL scripts on step 2 to re-create the index.
    8. delete the AAA_CDR_ORG table after investigating the whole operation.

    Using this method, you'll generate less archive logs and the process will be faster.

    See you soon
    LIX.

  • ORA-00257: Archive error

    Hi all

    ORA-00257: archiver error. Connect internal only, until this just released.

    My Question is why oracle does not allow to connect as a user of normal database like Scott during the archiving log is full, I know, log archiving is generating for the ddl/DML statements.
    y at - it archive log is generated in the course of a user, process is connected to the instance.
    Why oracle not connect to the database and everything for the ddl/DML statements, it can make the rite of error message, until I can go look for some records to the database (select statements) should allow.

    Please let me know the reason!

    Thank you

    Shan

    You ask "even if the DB is in State at time why I can't connect with a user in the role of read-only?"

    I think that Oracle will not take the risk.

    The only reason I can think of right now is "there could be enabled for user verification and wirte in the audit log, to DML on the basis of data"

  • ORA-00257 - a lot of free disk space

    I am trying to load approximately 14 GB of data, for a total of ~13.5 million records.
    The raw data are on 14GBs, and the table space is set to 30GBs, its all text data.
    The data are about 200 files of different site, ranging from 10 to 180 MBs.
    It's test data (real) I use to try to optimize my indexes and others before you start using the table for actual reports.
    A DBA, I am not able in databases and programming, I am, so please bare with me :)

    My approach is to use sqlldr on an Oracle 10 DB to load data into a table records_load, and then use a procedure essentially do an insert in the selection of records (...) (...) of records_load, in the records_load deletion.

    I've done a few sites one at a time, and they work fine, so I have 500,000 records in my table of records.
    But when I try to transfer the 13,000,000 whole records in the table of loading using the SP, it ends by crashes.

    If I connect to sqlplus to another window, I get
    ERROR:
    ORA-00257: archiver error. Connect internal only, until this just released.

    HOWEVER, what I find online tells me that the disc is full.
    Oracle is configured on a Windows Server, as follows:

    Total free walk
    Oracle-c (c :)) 50.0 go-go 39.3)
    Oracle-apps (e :)) 99.9 GO 91.2 GB)
    Oracle-logsA (f) 195 go-go 140
    Oracle-logsB (g) 83.5 83.3 go-go
    data-Oracle (h :)) 278 GO 150 GB)

    I stumbled upon this problem on so Friday and ran:
    RMAN > delete expired backup;
    and it "seemed" to solve the problem, which doesn't make much sense to me.

    So, I changed my PC a little today, to use a cursor and loop through each site and make the
    «* loop * insert records (...)» "selection (...) from records_load * where site = cur_row.site *, to remove at records_load * where site = cur_row.site."

    Now my db is blocked again, with a LOT of disk space.
    I don't really know what to do and would appreciate any suggestions?

    Free Flash Recovery Area (KB) 871.5

    Probably not enough free space to archive then redo log file

  • ORA-03135: connection lost contact for a single user only

    Hi gurus,

    I am puzzled to this problem, no one else is having problem connecting to the database except a user who always gets "ORA-03135: connection lost contact" when you try to connect to the test and Prod environment.

    Oracle@PATEST > sqlplus user@testDB

    SQL * more: release 10.2.0.3.0 - Production Wed Dec 23 13:21:08 2015

    Copyright (c) 1982, 2006, Oracle.  All rights reserved.

    Enter the password:

    ERROR:

    ORA-03135: connection lost contact

    Get the same error when you try to connect via EDIVIEW (application) or the prompt of commands or cygwin terminal directly.

    tnsping works fine and return connect credentials

    Here's what I did troubleshooting:

    1. make sure that the user is not locked in the database

    2. place the database restricted and provided this user mode access restricted and tried the connection as long as that user, not luck.

    3A bounced the listener

    4A rebounded from the database

    5. some online forums suggest to increase the timeout setting in sqlnet.ora, in our environment, we use the OID and the sqlnet.ora is the central directory. If this cannot be the issue that everyone can connect.

    6. I checked the sqlnet.log file and there seems to be no incoming connection from this user or machine.

    Information system and database

    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64 bit Production

    Mna3dbts SunOS 5.10 Generic_150400-27 sun4u sparc SUNW, SPARC-Enterprise

    Any advice would be appreciated

    Hello world

    Thanks for everyone came, surprisingly, the problem is solved by simply changing the user password in the database. As soon as the password is reset, I was able to connect using the assigned user name.

  • At the start of the ODC: error 20036: Description of error: ORA-06413: connection not open

    Hi all

    I am new to Oracle Document Capture. I installed ODDC on my windows 7 machine and launching that I gave a few local DB references. Since then, I'm not able to open Capture of Document Oracle and I'm not able to change any installation. I am still getting error below and when you click on OK the window closes. I couldn't find any place where I can change this configuration.

    Failed to connect.

    Error number: 20036

    Error description: [the following error occurred connecting to the database:]

    Error number: 20036

    Error description: the following error occurred connecting to the database:

    Error ID: 16389

    Description of error: ORA-06413: connection not open.

    ]

    I tried to uninstall ODC, deletion of data program for the Capture of Document Oracle and re-installed. Still the same error.

    Can someone help me please. I am completely struck with it.

    Thank you

    UMA.

    Problem solved after the installation of the 32-bit oracle client and the ODAC.

    Thank you

  • Oracle Database Vault ORA-12578 connection error: open TNS:wallet failed (user OS to access the wallet)

    Hi all

    I create a portfolio of oracle and everything works fine until a script is launched by the OS oracle user. (same user that whoever created the store)

    I use authentication external store and inside my script, I do something like a sqlplus / @MYSECURE_TNS.

    However, when I run a script OS another user as a 'data_loading_user' I get the error: Oracle Database Vault ORA-12578 connection error: TNS:wallet open failed

    I would like to know, how I can activate any user on the local host access the portfolio safe to connect to the database.

    Here my current ENV:

    ==================

    Oracle Linux 6.5

    Oracle a Standard 11.2.0.4

    Webtier Oracle 11g

    Database and thin client SQLNET. ORA

    =============================

    SQLNET. WALLET_OVERRIDE = TRUE

    SSL_CLIENT_AUTHENTICATION = FALSE

    SSL_VERSION = 0

    WALLET_LOCATION =

    (SOURCE =

    (METHOD = FILE)

    (METHOD_DATA =

    (DIRECTORY = / u01/app/oracle/owm/wallets)

    )

    )

    Thanks in advance for any help.

    JS

    Hi all

    Tried something out of the blue, that has worked.

    I added the data_loading_user of the user to the group administrator (Group of BONES that created the wallet).

    The I added the read permission to the group, so the permission on the files below were 640:

    # > chmod 640 cwallet.sso

    # > 640ewallet.p12 chmod

    Thank you

    JS

  • ORA-01436: CONNECT loop in the user data when the delimited string splitting by the

    I'm trying to split a string into records. The values are three characters more '-' with a limit of 12 values. The values themselves are a combination of two data, the first being two characters, a.

    The following example translates: ORA-01436: CONNECT BY a loop in the user data

    WITH
        Data(Code, Datum)
    AS
        (
         SELECT 'VGCU3VM', '00V-YYG-BVC-PIU-DV3-EVV-TVM-' FROM Dual UNION ALL
         SELECT 'VGAU3VM', '00V-YYG-BVA-PIU-DV3-EVV-TVM-' FROM Dual UNION ALL
         SELECT 'VGLN3CM', '00V-YYG-BVL-PIN-DV3-EVC-TVM-' FROM Dual UNION ALL
         SELECT 'VGLT3PM', '00V-YYG-BVL-PIT-DV3-EVP-TVM-' FROM Dual UNION ALL
         SELECT 'VGAT3RA', '00V-YYG-BVA-PIT-DV3-EVR-TVA-' FROM Dual
        )
    SELECT
        Datum,
        LEVEL,
        SUBSTR(Datum, ((LEVEL - 1) * 4) + 1, 2),
        SUBSTR(Datum, ((LEVEL - 1) * 4) + 3, 1)
    FROM
        Data
    CONNECT BY
        Code    = PRIOR Code
        AND    LEVEL    <= LENGTH(Datum) / 4;
    
    

    Remove the 'Code = Code PREREQUISITE"clause, to avoid the error, but too many records are returned, because nothing is to limit the records in their own groups.

    The following works:

    WITH
        Data(Code, Datum)
    AS
        (
         SELECT 'VGCU3VM', '00V-YYG-BVC-PIU-DV3-EVV-TVM-' FROM Dual UNION ALL
         SELECT 'VGAU3VM', '00V-YYG-BVA-PIU-DV3-EVV-TVM-' FROM Dual UNION ALL
         SELECT 'VGLN3CM', '00V-YYG-BVL-PIN-DV3-EVC-TVM-' FROM Dual UNION ALL
         SELECT 'VGLT3PM', '00V-YYG-BVL-PIT-DV3-EVP-TVM-' FROM Dual UNION ALL
         SELECT 'VGAT3RA', '00V-YYG-BVA-PIT-DV3-EVR-TVA-' FROM Dual
        )
    SELECT
        Datum,
        SUBSTR(Datum, ((Some.Num - 1) * 4) + 1, 2) A,
        SUBSTR(Datum, ((Some.Num - 1) * 4) + 3, 1) B
    FROM
        Data,
        (SELECT LEVEL Num FROM Dual CONNECT BY LEVEL <= 12) Some
    WHERE
        SUBSTR(Datum, ((Some.Num - 1) * 4) + 1, 2) IS NOT NULL;
    
    

    What causes ORA-01436?

    Hello

    Depending on your version, you can add another condition to your CONNECT BY clause.

    It works in Oracle 11.2.0.3.0:

    SELECT

    Point of reference,

    LEVEL,

    SUBSTR (Datum, ((LEVEL-1) * 4) + 1, 2),

    SUBSTR (Datum, ((LEVEL-1) * 4) + 3, 1)

    Of

    Data

    CONNECT

    Code = Code PRIOR

    AND LEVEL<= length(datum)="">

    AND PRIOR SYS_GUID () IS NOT NULL-* ADDED *.

    ;

    Thanks for the display of the data of the sample; This is really useful!

    In addition, relational databases are designed to have 1 piece of information in each column of each row, not a list delimited by up to 12 points.  It is so basic to the design of database he called the first normal form.  You're going to solve a lot of problems even before they occur if you paste to first normal form and change the table structure to resemble the result set of this query.  (Maybe that's exactly why you're doing this query.)

  • ORA-19815: WARNING (ORA-00257)

    Hello

    Environment:

    Virtual machine

    OS: Windows Server 2008 R2 64-bit (5 GB RAM) STD

    DB: Database Oracle 12 c (12.1.0.1.0) 64-bit Production

    Home Oracle: C:\

    Location of the archiving log. E:\

    The information in the log.xml:

    Errors in file C:\ORACLE\LINE3\diag\rdbms\line3\line3\trace\line3_arc0_3196.trc: ORA-19815: WARNING:

    db_recovery_file_dest_size 10737418240 bytes is 100.00% used and 0 bytes remaining available.

    is somewhat misleading, because there is enough space on the disk.

    See the recovery of parameter

    NAMETYPEVALUE

    -------------------------------------------------- ----------- -------------

    db_recovery_file_deststringE:\OraArchive
    db_recovery_file_dest_sizelarge whole 10G
    db_unrecoverable_scn_trackingBooleanTRUE
    recovery_parallelisminteger0

    Select nom_dest, status, destination of V$ ARCHIVE_DEST

    When status = 'INVALID ';

    NOM_DESTSTATUSDESTINATION

    ------------------ --------- -------------------------

    VALID LOG_ARCHIVE_DEST_1USE_DB_RECOVERY_FILE_DEST

    Select * from v$ flash_recovery_area_usage;

    TYPE_DE_FICHIERPERCENT_SPACE_USEDPERCENT_SPACE_RECLAIMABLE NUMBER_OF_FILESCON_ID

    ----------------------- ---------------------- ------------------------- ---------------------- ----------------------

    CONTROL FILE0000
    REDO LOG0000
    ARCHIVED JOURNAL32.990900
    BACKUP PIECE0.17010
    COPY OF THE IMAGE0000
    NEWSPAPER FLASHBACK0000
    ARCHIVED FOREIGN JOURNAL0000
    COPY OF DATA 0 AUXILIARY FILE000

    8 selected lines

    RMAN retention policy

    CONFIGURE THE RMAN OUTPUT TO KEEP FOR 7 DAYS; # by default

    We have configured our system to remove all logs archived last 7 days to free up disk space. However, the log.xml always shows the same caveat.

    The database was also interrupted because of an ORA-00257.

    We would appreciate any suggestions to avoid the ORA-00257 error.

    Thank you!

    did you remove OS archivelogs, do not use rman, right?  Fox

    RMAN > overlap archivelog all;

    RMAN > delete all. expired archivelog

    RMAN > remove obsolete;

    If you delete your archive of OS, Oracle do not know that this archivelogs have been removed, then you have to overlap.

    Check also:

    The files being removed in the area of flash recovery, log messages in the alert removed Oracle managed file [1369341.1 ID]

  • ORA-12545: Connect failed because target host or object does not exist

    Hi all

    I am not able to connect database remotely. I have two servers with the name U.S. and localhost. Here are my coordinates tns:

    Details of the host server we:

    [oracle@US admin] $ more tnsnames.ora

    tnsnames.ora # Network Configuration file: /u01/app/oracle/product/11.2.0/db_1/network/admin/tnsnames.ora

    # Generated by Oracle configuration tools.

    PROD =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = EN)(PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = prod. WORLD)

    )

    )

    PROD_STBY =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = prod. WORLD)

    )

    )


    [oracle@US admin] $ more sysconfig

    Networking = yes

    NETWORKING_IPV6 = yes

    HOSTNAME = US.localdomain


    [oracle@US admin] $ more/etc/hosts

    # Do not remove the next line, or various programs

    # requiring a network functionality will fail.

    127.0.0.1 localhost.localdomain localhost

    : US.localdomain6 1 U.S.

    Remote Ping US server location:

    [oracle@US admin] $ ping 192.168.188.131

    PING 192.168.188.131 (192.168.188.131) 56 (84) bytes of data.

    64 bytes from 192.168.188.131: icmp_seq = 1 ttl = 64 time = 0,662 ms

    64 bytes from 192.168.188.131: icmp_seq = 2 ttl = 64 time = 0,558 ms

    64 bytes from 192.168.188.131: icmp_seq = 3 ttl = 64 time = 0,566 ms

    64 bytes from 192.168.188.131: icmp_seq = 4 ttl = 64 time = 0,603 ms

    64 bytes from 192.168.188.131: icmp_seq = 5 ttl = 64 time = 0.575 ms

    ^ C

    -192.168.188.131 - ping statistics

    5 packets transmitted, 5 received, 0% packet loss, time 4002ms

    RTT min/avg/max/leg = 0.558/0.592/0.662/0.048 ms

    Details of the server remote localhost:

    [oracle@localhost admin] $ more tnsnames.ora

    PROD =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = EN)(PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = prod. WORLD)

    )

    )

    PROD_STBY =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = prod. WORLD)

    )

    )


    [oracle@localhost admin] $ cat/etc/hosts

    # Do not remove the next line, or various programs

    # requiring a network functionality will fail.

    127.0.0.1 localhost.localdomain localhost

    : 1 localhost6.localdomain6 localhost6


    [oracle@localhost admin] $ cat sysconfig

    Networking = yes

    NETWORKING_IPV6 = yes

    HOSTNAME = localhost.localdomain

    [oracle@localhost admin] $ listener.ora more

    SID_LIST_LISTENER =

    (SID_LIST =

    (SID_DESC =

    (GLOBAL_DBNAME = prod. WORLD)

    (ORACLE_HOME = u01/app/oracle/product/11.2.0/dbhome_1)

    (SID_NAME = prod)

    )

    )

    LISTENER =

    (DESCRIPTION_LIST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost.localdomain) (PORT = 1521))

    )

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))

    )

    )

    ADR_BASE_LISTENER = / u01/app/oracle

    [oracle@localhost admin] $ lsnrctl status


    LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 4 February 2014 16:49:36

    Copyright (c) 1991, 2009, Oracle.  All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=localhost.localdomain) (PORT = 1521)))

    STATUS of the LISTENER

    ------------------------

    Alias LISTENER

    Version TNSLSNR for Linux: Version 11.2.0.1.0 - Production

    Start date February 4, 2014 16:42:09

    Uptime 0 days 0 h 7 min 26 sec

    Draw level off

    Security ON: OS Local Authentication

    SNMP OFF

    Parameter Listener of the /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora file

    The listener log file /U01/app/Oracle/diag/tnslsnr/localhost/listener/alert/log.XML

    Summary of endpoints listening...

    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=localhost.localdomain) (PORT = 1521)))

    (DESCRIPTION = (ADDRESS = (PROTOCOL = ipc) (KEY = EXTPROC1521)))

    Summary of services...

    Service "prod. The WORLD' has 1 instance (s).

    Instance "prod", status UNKNOWN, has 1 operation for this service...

    The command completed successfully

    Location of ping to the server hosting remote localhost:

    [oracle@localhost admin] $ ping 192.168.188.130

    PING 192.168.188.130 (192.168.188.130) 56 (84) bytes of data.

    64 bytes from 192.168.188.130: icmp_seq = 1 ttl = 64 time = 1.57 ms

    64 bytes from 192.168.188.130: icmp_seq = 2 ttl = 64 time = 0,223 ms

    64 bytes from 192.168.188.130: icmp_seq = 3 ttl = 64 time = 0,577 ms

    64 bytes from 192.168.188.130: icmp_seq = 4 ttl = 64 time = 0,571 ms

    64 bytes from 192.168.188.130: icmp_seq = 5 ttl = 64 time = 0,568 ms

    ^ C

    -192.168.188.130 - ping statistics

    5 packets transmitted, 5 received, 0% packet loss, time 4006ms

    RTT min/avg/max/leg = 0.223/0.703/1.578/0.458 ms

    Connection database target mode ensures via RMAN:

    [oracle@localhost admin] $ rman target sys/oracle_4U@PROD auxiliary sys/oracle_4U@PROD_STBY


    Recovery Manager: release 11.2.0.1.0 - Production on Tue Feb 4 16:56:45 2014

    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

    RMAN-00571: ===========================================================

    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

    RMAN-00571: ===========================================================

    RMAN-00554: initialization of the package manager internal collection failed

    RMAN-04005: target database error:

    ORA-12545: Connect failed because target host or object does not exist

    Please let me know the cause of this error and it please help me how can I solve it.

    Kind regards

    Michel

    OK, so you have a software firewall (IPTables) running.  By default, it will not be configured to accept connections on port 1521.  You have two options...

    (1) disable the firewall completely.  Run these commands to do this...

    stop /etc/init.d/iptables

    chkconfig iptables off

    The first command stops the service.  The second command prevents revived at every restart of the OS.

    (2) add an exception to the firewall for port 1521.  I'm not a Linux expert, but it should be something like this...

    Change the configuration of IPTables with vi...

    VI/etc/sysconfig/iptables

    Add a new rule as follows...

    -A of ENTRY m state - state NEW-m tcp tcp - dport 1521-j ACCEPT Pei

    Save and close, and then restart the IPTables service...

    /etc/init.d/iptables restart

    NOTE: you must always change the name of this server to something other than "localhost".

  • ORA-16014: connect 2 sequence # 283 not archived, not available destinations

    When you try to start my database shows my journal alerts

    ORA-16014: connect 2 sequence # 283 not archived, not available destinations

    ORA-00312: wire 2 1 online journal: ' / home/app/oracle/oradata/PRIMARYP/redo02.log'

    I can get the ok of the instance, but not actually open the database

    My db_recovery_file_dest_size is 22 GB and and the mount point defined by db_recovery_file_dest has pleanty of free space

    Also

    Select *.
    v $ recovery_file_dest;

    sufficient free space of FRA - shows

    NAME

    --------------------------------------------------------------------------------

    SPACE_USED SPACE_RECLAIMABLE NUMBER_OF_FILES SPACE_LIMIT

    ----------- ---------- ----------------- ---------------

    / Home/app/Oracle/fast_recovery_area

    + 10 5506131968 3297617408 159 2.3622E

    Select error
    v $ archive_dest;

    shows no errors

    Can anyone help!

    Thanks, Jim

    The broker indeed seems to have changed all parameters of LOG_ARCH_DEST_n when I did a swap / switchback using the PRIMARYP and STANDBYP databases.

    Data not archived clear alter logfile Group 1;

    indeed to create a space that was insoluble. I had to rebuild / recover the standby

    Jim

Maybe you are looking for