ORA-29770 LMHB end Instance as long-awaited LMON

Hi all

I have set up two-node cluster on Rac on Solars 10 Sparc using Oracle version 11.2.0.3.

My instance ASM and obtained database tereminated reason of critical RAC background processes (LMON, LCK0, LMD0, etc.) did not participate in the blink of an eye for more than 150 seconds default threshold.

After reading some documents, concluded that his and cam Bug Oracle 11.2.0.1 then 11.2.0.3 they provided struggling inside.

Thiosugh I use Oravle 11.2.0.3, I faced this issue.

Please suggest what can be done to address this problem in the future.

Kind regards.

Hi all

Found that its a Bug of Oracle that each 248 days server gets restarted for setup of Solaris 10 cars.

Reference:-Doc ID 1473937.1

Thank you.

Tags: Database

Similar Questions

  • ORA-00980: synonym translation is no longer valid

    I have a two databases. CARRIER_DEV and TRANSPORT_DEV. Everything works fine in Oracle 11 g, but when we migrated to Oracle12c, INFO_FUNC (service Oracle) residing in CARRIER_DEV under carrier scheme is called TRANSPORT_DEV, throwing the ORA-01775: synonym of closure chain. which caused ~ 9 invalid objects.

    SELECT INFO_FUNC('1','NAME') FROM DUAL; This has been called TRANSPORT_DEV.

    The DB of TRANSPORT_DEV to CARRIER_DEV link has been created to help

    CREATE THE DATABASE LINK RCAR PUBLIC
    CONNECT TO CARRIER_USR
    IDENTIFIED BY < PWD >
    With the HELP of ' Carrier_dev. WORLD ';

    We have created the synonym and gave the CARRIER_DEV necessary.

    CREATE THE INFO_FUNC FOR CARRIER.INFO_FUNC PUBLIC SYNONYM;
    GRANT EXECUTE ON CARRIER.INFO_FUNC TO CARRIER_USR;

    Transport_dev database,

    I created the following synonym to access the CARRIER.INFO_FUNC

    CREATE THE INFO_FUNC PUBLIC SYNONYM FOR "PUBLIC".INFO_FUNC@RCAR;

    After analysis of the issue, I found that the public synonym in Transport_dev uses 'PUBLIC' as a schema instead of CARRIER name. (It works fine in Oracle 11 g. Explain what is 'PUBLIC' means here).

    So I decided to use the name of schema instead of 'PUBLIC '.

    CREATE THE INFO_FUNC FOR CARRIER.INFO_FUNC@RCAR PUBLIC SYNONYM;

    After this change, all invalid objects went into Oracle 12 c, but a new problem came.

    SELECT INFO_FUNC('1','NAME') FROM DUAL;  This SQL sataement now gives ORA-00980: synonym translation is no longer valid

    SELECT INFO_FUNC@RCAR('1','NAME') FROM DUAL; also gives the same error.


    CARRIER_DEV the database


    CREATE TABLE CARRIER. CARRIER_NAME
    (
    NAME_SEQ_NO NUMBER OF NON-NULL,
    LNAME VARCHAR2 (50 BYTE),
    FNAME VARCHAR2 (20 BYTE),
    MNAME VARCHAR2 (20 BYTE),
    VARCHAR2 (10 BYTE) SUFFIX
    );

    CREATE OR REPLACE FUNCTION CARRIER. "" INFO_FUNC "(pin_in VARCHAR2, field_in VARCHAR2: = 'TEST')
    RETURN VARCHAR2
    IS
    tmpVar VARCHAR2 (100);

    BEGIN

    SELECT lname | ',' | fname | » '|| mname | » '|| suffix
    IN tmpVar
    OF Carrier_Name
    WHERE name_seq_no = pin_in;

    END INFO_FUNC;
    /

    CREATE THE INFO_FUNC FOR CARRIER.INFO_FUNC PUBLIC SYNONYM;
    GRANT EXECUTE ON CARRIER.INFO_FUNC TO CARRIER_USR;

    In TRANSPORT_DEV

    CREATE THE INFO_FUNC FOR CARRIER.INFO_FUNC@RCAR PUBLIC SYNONYM;

    Please guide me.

    I've recreated the DBLink from TRANSPORT_DEV to CARRIER_DEV. The problem disappeared. Thank you for your help

    1. Re-create the synonym.
    2. Recreate the DBLink
  • Error (21,100): PL/SQL: ORA-00997: illegal use of the LONG data type

    CREATE or REPLACE (name in varchar2) procedure Compress_tab_partition
    is
    last_mnth_var varchar2 (8);
    curr_mnth_var varchar2 (8);
    number of last_mnth;
    number of curr_mnth;
    last_partition varchar2 (8);
    high_val varchar2 (4000);
    Start

    Select to_char (add_months (trunc (sysdate, 'MM'),-1), 'YYYYMM') | ' 00' in the double last_mnth_var;
    Select to_char (sysdate, 'YYYY') | TO_CHAR (sysdate, 'mm') | ' 00' in the double curr_mnth_var;
    Select to_number (last_mnth_var) in the double last_mnth;
    Select to_number (curr_mnth_var) in the double curr_mnth;

    Dbms_output.put_line ('Compression of GOLDMGR Table scores.' | table-name |) "to go". ») ;
    Dbms_output.put_line(' ');

    / * Step 1 - identify the name of the partition of the specified table must be compressed * /.
    Select high_value from high_val from user_tab_partitions where table_name = table-name;
    Select nom_partition into last_partition from user_tab_partitions where table_name = table-name and high_value = rtrim (high_val);

    / * Step 2 - Alter partition table to compress * /.

    run immediately "ALTER TABLE GOLDMGR." | table_name | ' CHANGE THE PARTITION '. last_partition | "COMPRESS by low query";

    / * Step 3 - Index rebuild step * /.

    I'm in (select index_name in user_indexes where table_name = table-name)
    loop
    run immediately "ALTER INDEX GOLDMGR." | i.index_name |' REBUILD ";
    end loop;

    Dbms_output.put_line (' COMPLETED: compress the Table partitions change.) ") ;

    end;
    /

    I'm getting an error like: Error (21,100): PL/SQL: ORA-00997: illegal use of the LONG data type

    Please resolve.

    HIGH_VALUE datatype is LONG. You may not use for a long TIME in WHERE clause expressions. You need to loop through the partitions by selecting HIGH_VALUE and then comparing. Secondly, there is no need to select double to calculate expressions. For example:

    Select to_char (add_months (trunc (sysdate, 'MM'),-1), 'YYYYMM') | ' 00' in the double last_mnth_var;

    should be replaced by

    last_mnth_var: = to_char (add_months (trunc (sysdate, 'MM'),-1), 'YYYYMM') | ' 00'.

    and there is no need to add_months here:

    last_mnth_var: = to_char (trunc (sysdate, 'MM') - 1, "YYYYMM"). ' 00'.

    But the main question is simply ALTER TABLE MODIFY PARTITION COMPRESS allows compression but does not compress. You must issue ALTER TABLE MOVE PARTITION COMPRESS:

    SQL > create table tbl (n) partition by range (n)
    2 (partition p1 values less than (maxvalue))
    3. Select lpad('X',4000,'X') from dual connect by level<=>
    4.

    Table created.

    SQL > select bytes
    2 from WHERE user_segments
    3 where nom_segment = 'TBL '.
    4 and nom_partition = 'P1 '.
    5.

    BYTES
    ----------
    830472192

    SQL > alter table tbl
    2. change the partition p1 compress
    3.

    Modified table.

    SQL > select bytes
    2 from WHERE user_segments
    3 where nom_segment = 'TBL '.
    4 and nom_partition = 'P1 '.
    5.

    BYTES
    ----------
    830472192

    SQL > alter table tbl
    2. move the partition p1 compress
    3.

    Modified table.

    SQL > select bytes
    2 from WHERE user_segments
    3 where nom_segment = 'TBL '.
    4 and nom_partition = 'P1 '.
    5.

    BYTES
    ----------
    8388608

    SQL >

    SY.

  • RMAN Duplicate - ORA-01092: ORACLE terminated instance. Disconnection forced

    Source DB - 11.2.0.2.0

    Target DB - 11.2.0.2.0

    OS - SunOS 5.11

    Hello guys I'm trying to restore a database by using a duplicate order. Here are the scripts that I use.

    This is the script in which the restore.cmd is called.

    -----------------------------restore.sh--------------------------------------------------------------

    #! / usr/bin/ksh

    #PATH $PATH = "" / usr/ccs/bin: / usr/bin: / usr/sbin: / usr/sbin/nsr: / usr/ucb: / usr/ucb: / etc: / usr/local/bin ""

    #LD_LIBRARY_PATH = / usr/openwin/lib: / usr/ccs/lib

    #export PATH LD_LIBRARY_PATH

    GET_DATE = 'date "+ %y %d hour %M %s %m" '

    CHK_DATE = "date"+ %y %m %d"'"

    GET_YEAR = "date" + %y' "

    GET_DAY = "date"+ %d"'"

    Etiquettemois = "date"+ %p"'"

    GET_MONTH = "date" + %m' "

    ORAENV_ASK = NO

    #. / usr/local/bin/oraenv

    . $HOME/.profile

    echo ${ORACLE_SID}

    ################################################################################################################

    echo $ORACLE_HOME $DB_NAME $ORACLE_BASE

    Export ORACLE_HOME, ORACLE_BASE DB_NAME

    EXPHOME = / export/home/oracle

    CLN_Home = / export/home/oracle

    job_log_file = "${EXPHOME}" / rman_restore.log ' "

    Add $(ORACLE_HOME) / bin/rman trace = / export/home/oracle/monsuivi msglog ${EXPHOME} / rman_restore_msg_log.log < <!

    auxiliary connection.

    Set the dbid = 5798365608

    echo setting

    @${CLN_Home} / restore.cmd

    output

    !

    Shortly after the spfile is restore, I get the following error.

    DOUBLE RMAN ERROR-

    connected to the auxiliary database (not started)

    Oracle instance started

    Total System Global Area 8554127360 bytes

    Bytes of size 2175440 fixed

    5117054512 variable size bytes

    3170893824 of database buffers bytes

    Redo buffers 264003584 bytes

    Call krmmmai krmmpem

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

    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

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

    RMAN-00601: fatal error in the Recovery Manager

    RMAN-03004: fatal error when executing command

    RMAN-04006: auxiliary database error: ORA-01092: ORACLE terminated instance. Disconnection forced

    RMAN-03002: failure of Db in dual at 27/12/2013 12:18:10

    RMAN-05501: abandonment of duplicate target database

    RMAN-03015: an error has occurred in the script stored memory Script

    ORA-03113: end of file on communication channel

    -TRYING to solve the error-

    When I checked google, said some, it could be undo tablespace issue, so I put the undo_tablespace parameter in the same as source target. Here again, I was getting the same error.

    The source database has not being upgraded, if this isn't a problem with the upgrade.

    can give any output as to how this problem can be solved?

    Thank you

    First: DUPLICATE is NOT restore!

    Second: If a database hits ORA-1092.

    There will be errors in the alerts log.

    Before even this announcement, you should examine the error online and browsed the alert.

    Troubleshooting is any dumping using ctrl-c/ctrl-v and sitting with your shoes on your desk and your hands behind your head to whistle and wait for replies to come.

    -----------

    Sybrand Bakker

    Senior Oracle DBA

  • ORA-01461: can bind to a LONG value only for insert into a LONG column

    Hello

    Oracle XE on RHE dedicated server
    create table cvDetails(
    cd_id number(14) primary key,
    cv_id number(14) constraint education_fk references CvProperties(cv_id),
    nationality varchar2(230),
    objectives varchar2(3900),
    name varchar2(230),
    fatherName varchar2(230),
    motherName varchar2(230),
    dob varchar2(230),
    gender varchar2(230),
    mStatus varchar2(230),
    passportNo varchar2(110),
    email varchar2(230),
    phone varchar2(45),
    mobile varchar2(25),
    address varchar2(2500),
    state varchar2(230),
    zipCode varchar2(230),
    city varchar2(230),
    education clob,
    experience clob,
    skills clob,
    languages varchar2(1400),
    hobbies varchar2(3200),
    achievements varchar2(3900),
    references varchar2(3900)
    );
    
    create sequence cvDetails_seq
    start with 1 increment by 1;
    
    create or replace trigger cvDetails_trig
    before insert on cvDetails
    referencing new as new
    for each row
    begin 
    select cvDetails_seq.nextval into :new.cd_id from dual;
    end;
    /
    Why do I get the error of subject?

    Thank you in anticipation

    >
    in any case, I checked manually according to your instructions and found that this objective column is of character input more than specified.
    >
    Glad you found the problem, but I hope that you learned a lesson that is time consuming.

    It must be remembered that we have no access to your environment. If we do not know which servers, clients, tables and users that you use.
    It may seem simple to you but doesn't realize that you provide us with two slightly different versions of the cvDetails table.

    The original post had this
    >
    objectives varchar2 (3900).
    >
    But when you have provided your 'cvDetails desc' journal text has
    >
    OBJECTIVES VARCHAR2 (3950)
    >
    It is the same table that you started with how the column suddenly grow 50 bytes?
    This means that you did from different parts of the present in the two schemas or on two servers or you change the table between the two.

    You can't address properly when you do this. By chance it is the column that you said is now the problem.
    In SQL, the maximum length of a VARCHAR2 is 4000 bytes; no characters but bytes. Nothing more than 4000 bytes would probably be a LONG in the generic sense.

    If your error
    >
    Re: ORA-01461: can bind to a LONG value only for insert into a LONG column
    >
    means that you try to 'bind a LONG value' to a column VARCHAR2 and you can't you can 'bind a LONG value only for insert in a LONG column.

    In the proper context, the error makes sense.

    You probably have a problem with

     ps.setString(2,  objectives);
    

    because the 'objectives' has a length of more than 4000 bytes.

    Remember this answer from you?
    >
    I have read and found that there may be a problem with the driver JDBC or Characterset. Am I wrong?
    >
    The 'Hello' ASCII string is five characters and five bytes because the ASCII code is a set of characters in a single byte. The same string internally in Java is five characters but ten bytes because Java uses UTF16.

    So, if the character set of the data itself is double-byte character set then anything more than 2000 characters (4000 bytes) is a "LONG". And if your column is defined as VARCHAR2 (3950), which means bytes a doublel-byte character set which are characters of 1975.

    Then you said in a response later
    >
    I checked by the SNA Server and oracle that are both of the same but new thing I found is that oracle does not allow more than one clob column in a table. Is this true?
    >
    Somehow a hypothesis has crept it that the problem was not a driver JDBC or Charaterset, but because you can not have more than one clob column in a table.

    You could have easily tested for yourself by doing what P. Forstmann - tried to create a table and see.

    Then you completely ignored my advice
    >
    I suggest to you isolate the columns actually causing the problem.
    Change your code to insert only a few columns. When it works, add more than a few columns.
    This will then tell you which column or the columns are at the origin of the problem.
    Display the results once you determine a column that causes the error.
    >
    When you have finally made the simplest things, you have found what was causing the problem almost immediately.

    Many times you don't need 'experts' - you must use a rigorous, methodical, process step by step.

    ALWAYS, ALWAYS, ALWAYS reduce the simplest possible code example that illustrates the problem.
    If you had followed this a rule would have probably found you the problem and makes you look like the 'expert '.

    There are no shortcuts.

  • ORA-38760: this database instance could not turn on the flashback database

    Hi guys

    Without knowing it, I deleted all the files in the directory "fra" where "flashback" folder was there because of space issues. Now am facing the error.

    It's my practical database.

    SQL > startup

    ORACLE instance started.

    Total System Global Area 608174080 bytes

    Bytes of size 1268920 fixed

    184550216 variable size bytes

    419430400 of database buffers bytes

    Redo buffers 2924544 bytes

    Mounted database.

    ORA-38760: this database instance could not turn on the flashback database

    SQL > alter flashback database;

    Database altered.

    SQL > SHUTDOWN IMMEDIATE;

    SQL > STARTUP MOUNT

    SQL > select flashback_on from database v$.

    FLASHBACK_ON

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

    RESTORE POINT ONLY

    Am not able to extinguish the flame.

    SQL > select * from v$ restore_point;

    Select * from v$ restore_point

    *

    ERROR on line 1:

    ORA-38701: Flashback database log 1 seq 1 wire 1:

    "/ u01/fra/PROD/flashback/o1_mf_c1l5n3lq_.flb".

    ORA-27037: unable to get file status

    Linux error: 2: no such file or directory

    Additional information: 3

    SQL > select flashback_on from database v$.

    FLASHBACK_ON

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

    RESTORE POINT ONLY

    I also tried to create a restore point and the flashback there.

    SQL > create restore point guaranteed rspt1 flashback database;

    Restore point created.

    SQL > select * from v$ restore_point;

    Select * from v$ restore_point

    *

    ERROR on line 1:

    ORA-00600: internal error code, arguments: [krfg_get_keepseq_2], [1], [0], [0,]

    [0], [0], [0], [0]

    SQL > flashback data base to restore the point rspt1;

    flashback database to restore the rspt1 point

    *

    ERROR on line 1:

    ORA-38729: not enough flashback database data log do FLASHBACK.

    Please help me in this regard.

    Alert log file:

    ...

    ...

    ...

    Mount of redo thread 1, with mount id 305866694

    Sun 25 Oct 10:13:30 2015

    Bytes allocated of 3981204 in the shared pool for the generation of flashback buffer

    From RVWR background process

    RVWR started with pid = 16, OS id = 15486

    Sun 25 Oct 10:13:30 2015

    Errors in the /u01/oracle/product/10.2.0/db_1/admin/prod/bdump/prod_rvwr_15486.trc file:

    ORA-38701: seq 11 Flashback database log 11 1 thread: ' / u01/fra/PROD/flashback/o1_mf_c2oqypb0_.flb '.

    ORA-27037: unable to get file status

    Linux error: 2: no such file or directory

    Additional information: 3

    Sun 25 Oct 10:13:30 2015

    Database mounted in exclusive Mode

    Completed: ALTER DATABASE MOUNT

    Sun 25 Oct 10:13:30 2015

    ALTER DATABASE OPEN

    ORA-38760 marked during: ALTER DATABASE OPEN...

    Trace file:

    ...

    ...

    ...

    :() 2015-10-25 10:13:30.087 SERVICE NAME

    SESSION ID: (156.1) 2015-10-25 10:13:30.087

    ORA-38701: seq 11 Flashback database log 11 1 thread: ' / u01/fra/PROD/flashback/o1_mf_c2oqypb0_.flb '.

    ORA-27037: unable to get file status

    Linux error: 2: no such file or directory

    Additional information: 3

    1. Thank you.

    you experience serious problem... because usually it works very well.

    Try the following:

    SQL > shutdown immediate;

    SQL > bootable media.

    SQL > alter flashback database;

    SQL > alter database backup controlfile to trace noresetlogs;

    SQL > shutdown immediate;

    go to the trace file generated from running (alter database backup controlfile to trace noresetlogs ;)

    location of the trace file is located in the query:

    SQL > select * from v$ diag_info;

    It will contain the script with the SQL commands, you can rename the file with the extension ".sql".

    SQL > startup nomount

    SQL > @trace_file. SQL

    SQL > restore database;

    SQL > alter database open;

    So basically you are going to recreate the files of control again...

  • A weird exception in 12 c (ORA-01461: can bind to a LONG value only for insert into a LONG column)

    I have a Windows application that accesses a database of 12 c Oracle via ODBC (driver version is 12.01.00.01).

    I have a table with a column of key named REGION_ID (NVARCHAR2 (9)) and a dozen other columns, of which three are named region1 and region.2 elle3, all of type NVARCHAR2 (40).

    When I try to insert a string in the scope of the region1 is longer than 9 characters (length of REGION_ID), I get an error ORA-01461 (' can bind to a LONG value only for insert into a LONG column). If I set the length of REGION_ID be NVARCHAR2 (15), so I can add channels to the region1 in length up to 15 field until I get ORA-01461 exception again. Curiously, if I change the name of column region1 to REGIONONE, I don't get any errors, and everything works fine. It's almost as if the column name region1 is being confused with REGION_ID backstage.

    Any ideas? I am using SQLBindParameter to bind the columns, and all calls are successful. I get the exception when I run the insert statement. This same code worked for previous versions of Oracle (9i, 10g and 11g). And if I use a driver of client 11g against the 12 c server, I do not receive the exception.

    Thank you!

    It is a component of ODBC driver bug in 12 c and it is fixed. You can download and install the fix for bug 18232462 or the last window for 12 c patch cumulative/bundle.

    Thank you

    Spengler

  • ORA-00997: illegal use of the LONG data type

    Hi all

    11.2.0.1

    ALTER TABLE SAFDB MOVE TABLESPACE DATA_TS_ENC

    *

    ERROR on line 1:

    ORA-00997: illegal use of the LONG data type

    Why illegal? How can I move this table?

    Thank you very much

    pK

    Take a look who

    http://aprakash.WordPress.com/2011/01/06/how-to-move-table-containing-long-or-LOB-columns/

    Concerning

  • SUPERIOR service... ORA-00921: unexpected end of SQL command

    Hello

    get the below error.

    SQL > @c:\test_user.sql;

    Enter the user name value: mapple
    old 1: DROP USER UPPER(&&USERNAME) CASE
    new 1: DROP USER UPPER (mapple) WATERFALL
    DROP USER UPPER (mapple) WATERFALL
    *
    ERROR on line 1:
    ORA-00921: unexpected end of SQL command


    you want to convert to uppercase in user input.

    cant we use UPPER() function here?

    How can we do?

    Regarding

    No, you can use the UPPER part.

    Or do you need it. Oracle will automatically translate all identifiers (table names, column names, etc.) in uppercase, except if you wrap them in double quotes.
    If you insist on the use of capital letters:

    Set sqlcase higher

    send all your statements translated into letters on the server.

    -------------
    Sybrand Bakker
    Senior Oracle DBA

  • ORA-12514 &amp; listener State Instance status unknown issue

    Dear all,

    Version of database - 10.2.0.5.0
    Operating system - Windows XP

    I'm using the version of Oracle 10 g, who has two services (bit10g and ora10g) is installed.
    Ora10g service was operating prior to upgradation of database at 10.2.0.5.0 and it was fine.
    On upgradation I was unable to start and connect using ora10g so I created another which is bit10g.

    Bit10g service worked fine for quite a long time. The last I have worked and connected was the game and it connected no problem.

    Now, when I'm trying to connect to the database today I am unable to connect because I'm
    ORA12514 - TNS:listener is not currently in service.

    Second, I tried to search the forums which led me to check the status of the listener.
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    
    C:\Documents and Settings\Admin>lsnrctl status
    
    LSNRCTL for 32-bit Windows: Version 10.2.0.5.0 - Production on 12-JAN-2013 11:42
    :54
    
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=toshiba-arif)(PORT=1521)
    ))
    STATUS of the LISTENER
    ------------------------
    Alias                     LISTENER
    Version                   TNSLSNR for 32-bit Windows: Version 10.2.0.5.0 - Produ
    ction
    Start Date                12-JAN-2013 11:18:12
    Uptime                    0 days 0 hr. 24 min. 43 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   C:\ora10g\product\10.2.0\db_1\network\admin\listener.o
    ra
    Listener Log File         C:\ora10g\product\10.2.0\db_1\network\log\listener.log
    
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=toshiba-arif)(PORT=1521)))
    Services Summary...
    Service "Oracle8" has 1 instance(s).
      Instance "bit10g", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    Here is my listener.ora file
    # listener.ora Network Configuration File: C:\ora10g\product\10.2.0\db_1\NETWORK\ADMIN\listener.ora
    # Generated by Oracle configuration tools.
    
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (GLOBAL_DBNAME = Oracle8)
          (SID_NAME = bit10g)
        )
      )
    
    LISTENER =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = toshiba-arif)(PORT = 1521))
      )
    Please note that I am a developer without exhibition s/n.
    So please guide me so that I will be able to solve my problem.

    Thanks and greetings

    Arif Khadas

    S/O-error: (OS 1502) the event log file is full.

    That's your problem...

  • ORA-12528 all appropriate instances are blocking new connections

    I am applying flashbacks, yesterday it was working fine but now unable to open the db in the editing phase

    name of the comic is flash

    immediate stop

    Startup mount (all appropriate instances are blocking new connections)

    ORA-12514: TNS:listener is not currently of service requested in connect descriptor

    Help, please

    Thanks in advance

    There are normally 5 reasons an instance to block:

    1. the remote_listener parameter is defined in the file init/sp, but the
    LOCAL_LISTENER is not running.
    2. the instance is not completely mounted.
    3. the instance stops.
    4. the maximum number of simultaneous sessions has been reached.
    5. the node is maximum.

    It can happen because of one of the above reasons.

    I just tried on my end and found the solution.

    And I hope that its working fine now.

    Concerning

  • ORA-01461: can bind to a LONG value only for insert into a LONG column of dynamic Action

    I try to apply the condition to display items in a table with the following error code.its dynamic action when him save the day.

    event: click on

    Selection type: button

    name of the button: P23_ADD_MORE_ROW

    condition: no strings attached

    //P23_NAME_BY_CAT,P23_HOW_MANY as LOV  in apex form
    var l_no_rows;
    l_no_rows = apex.item("P23_HOW_MANY").getValue();
    for (var i=0; i<l_no_rows; i++){
      apex.widget.tabular.addRow();
    
    if  ($v("P23_NAME_BY_CAT")==1) {
    $("#WORK_QTY").show();
    $('td[headers=WORK_QTY]').show();
    $("#WORK_LOCTION").hide();
    $('td[headers=WORK_LOCTION]').hide();
    $("#MY_LOCTION").hide();
    $('td[headers=MY_LOCTION]').hide();
    //with morethan 25+ entry
    }
    else if ($v("P23_NAME_BY_CAT")==2) {
    $("#WORK_QTY").hide();
    $('td[headers=WORK_QTY]').hide();
    
    $("#WORK_LOCTION").show();
    $('td[headers=WORK_LOCTION]').show();
    
    $("#MY_LOCTION").hide();
    $('td[headers=MY_LOCTION]').hide();
    //with morethan 25+ entry
    }
    else if ($v("P23_NAME_BY_CAT")==2) {
    $("#WORK_QTY").hide();
    $('td[headers=WORK_QTY]').hide();
    $("#WORK_LOCTION").hide();
    $('td[headers=WORK_LOCTION]').hide();
    
    $("#MY_LOCTION").show();
    $('td[headers=MY_LOCTION]').show();
    //with morethan 25+ entry
    }
    else {
    alert("no  count");
    }
    };
    
    

    dynamic action above can ignite if you level column, it means when I choose LOV value so that specified columns will show only rest in a column will be hidden. up to 10 input works fine.

    Hi Ramani_apex,

    Is the action of javascript executed in the dynamic action of the code you posted above or more code?

    You seem to have exceeded a 4000 or 32 K bytes on a column of metadata for dynamic action when you set the dynamic action.

    function f_mybuttonAction () {
    //P23_NAME_BY_CAT,P23_HOW_MANY as LOV  in apex form
    var l_no_rows;
    l_no_rows = apex.item("P23_HOW_MANY").getValue();
    for (var i=0; i
    
    • Call the action javascript function run the dynamic action javascript code:
    //mybutton action
    f_mybuttonAction();
    

    Reference:

    I hope this helps!

    Kind regards

    Kiran

  • Recovering from the loss of datafile UNDO + ORA-01092: ORACLE terminated instance.

    Hi all

    I lost the data for the undo tablespace file and database is down.

    Tried the normal process undo_management = MANAUL and drop and create undo tablespace with no luck, it looks like there transaction cease...
    Please let me know how I can get back the database...

    Oracle 10.1.0.3.0
    AIX 5.3
    In ARCHIVELOG Mode and have a valid backup too.

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

    SQL > startup mount pfile='/usr/app/sys/oracle/OraHome_1/dbs/initnmnt1.ora'
    ORACLE instance started.

    Total System Global Area 356515840 bytes
    Bytes of size 1329816 fixed
    224900456 variable size bytes
    130023424 of database buffers bytes
    Redo buffers 262144 bytes
    Mounted database.
    SQL >

    SQL >
    SQL > alter database datafile ' / data/oracle/oradata/nmnt1/undotab01.dbf' drop offline;

    Database altered.

    SQL > alter database open;
    change the database open
    *
    ERROR on line 1:
    ORA-01092: ORACLE instance is complete. Disconnection forced


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

    ~ Thank you

    Then it would mean that Oracle has always marked this data file is offline.

    Try

    sqlplus '/ as sysdba'
    startup mount
    alter database datafile 2 online;
    
  • Satellite M - PgUp PgDn, home and end keys no longer work

    All of a sudden these keys no longer work on the computer when I'm on the internet. They sometimes work in PDF files in Word, but otherwise, they do not work...

    Hello

    I agree with the user above. I think the keyboard needs to be replaced if certain keys n t work. The fact is that individual keys can t be bought, you can only buy the whole keyboard but it isn't so expensive.

    You can get a new keyboard to an authorized service provider. On the Toshiba page you can find a list where you can find an ASP.

  • Long-awaited problem, really need help.

    Hi, hope you can help me it's been 3 years in manufacturing and really impact the performance of my window.

    I have several errors on my computer and can't do some things that I really need to.

    1. I can't update my windows and I have not for a long time.

    2. I can't install a lot of programs including; TeamSpeak3 and now iTunes (which I really need for my phone)

    (iTunes error = microsoft.vc80.crt, version = "8.0.50727.4053", type is "win32", publickeytoken = "1fc8b3b9a1e18e3b" processorarchitecture = "x 86" HRESULT:0x8007054F)

    I can download pictures of errors if you need and I have microsoft support emails for about a year ago which might be useful if you need.

    It would be really grateful if you could A) get my windows updated B) help to install programs that become indispensable in my life. Thank you!

    FC.  http://social.answers.Microsoft.com/forums/en-us/vistawu/thread/24c46d5a-A05B-435A-A722-6b4d8e28edb4 ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

Maybe you are looking for

  • XAVC 4 k 480 codec V8.0

    Haven't seen no debate yet, but it seems to me that the new 4 k 480 codec is perhaps the most exciting aspect of the latest announcements. Compressed 4 k with a minimal flow of manageable data and artifacts. Are Peter et al, we able to obtain the spe

  • Satellite A100: USB and Modem does not

    Hello! My name is Clarisse and I have a Satellite A100, which I use for school. I'm having a problem with its usb ports and modem.When I try to connect to the internet, he just say he of no tone and tells me to ensure that lines are connected, who th

  • Wireless Satellite L350D - 10 p

    I had a Satellite L350D - 10 p with PSLE0E-00700PCE model number. Even thw wireless switch is turned on I see not all net wireless. I have another computer with wireless next to the L350D option and I see 4 different nets. What should I do to activat

  • I have a HP computer with the software Microsoft Vista on it, but need to be compatible with Microsoft XP

    I spoke with representatives at Best Buy and OfficeMax. They tell me the software I need can be obtained from you as a free download. Can you please give me the link so that I can run Windows XP programs on my computer that is configured with Windows

  • How can a Cascades-C++ app close self?

    How can a Cascades-C++ app close self? In other words, how a QML button OnClicked event can close the application?