avoid generating 600 ora

11.2.0.4

We have an individual ora 600 generation which is a bug known, there is a patch available, but we do not have a window for a few weeks.  his benign, we know this, we just stop coming up like its flooding alerts log log.

Is there a way to define the instance level events to prevent an error message hitting the alerts log?     IIm I read somewhere that this could be done, but couldn't find anything.

I don't want any of the 600, just a specific.

oralicious wrote:

11.2.0.4

We have an individual ora 600 generation which is a bug known, there is a patch available, but we do not have a window for a few weeks.  his benign, we know this, we just stop coming up like its flooding alerts log log.

Is there a way to define the instance level events to prevent an error message hitting the alerts log?     IIm I read somewhere that this could be done, but couldn't find anything.

I don't want any of the 600, just a specific.

is not possible

Tags: Database

Similar Questions

  • How to avoid the error ORA-01858:

    Hi all
    I use apex 4.1.
    I tried a query while dealing with the dates I had error, but I did not how to avoid it.
    like trying to get the number of students joined between certain dates.
    declare
    SMO varchar2 (100);
    SDO varchar2 (100);
    SYO varchar2 (100);
    SYDS varchar2 (100);
    SYDE varchar2 (100);
    a varchar2 (100);
    b the number;
    D1 date;
    D2 date;
    Start
    Select to_char(sysdate,'MM'), to_char(sysdate,'DD'), to_char(sysdate,'YYYY') in SMO, SDO, SYO double;
    SYDS: = '0602' | SYO;
    SYDES: = '0902' | SYO;
    D1: = to_date(SYDS,'MM/DD/YYYY');
    D2: = to_date(syde,'MM/DD/YYYY');
    run immediately "select |" TO_CHAR (DATE_OF_JOIN, "YY"), (TOTAL_NO_STUDENTS) Count of CROP_SALE where class = 7 and to_char (DATE_OF_JOIN, "YYYY") = to_char (sysdate, "YYYY") and to_date (to_char (DATE_OF_JOIN), "MM/DD/YYYY") > to_date(''d1'',''MM/DD/YYYY'') and to_date(DATE_OF_JOIN,''MM/DD/YYYY'') < to_date(''d2'',''MM/DD/YYYY'') group to_char (DATE_OF_JOIN "AA")' has , b ;
    dbms_output.put_line(a|| b);
    end;
    This error comes in dates d1 & d2 referring, but I did not how slove it.
    can someone help me pls
    Kind regards
    Pavan

    There are two types of errors that I see. First, fix the date format before removing the slashes (because the source has no slash).

    D1: = to_date (SYDS, 'MMDDYYYY');
    D2: = to_date (SYDE, 'MMDDYYYY');

    Secondly, in the statement immediately execute you put in the text "d1" and "d2", not the values of d1 and d2. You must either concatenate the values like this:

    to_date('||) D1 |', "MM/DD/YYYY)

    Or better yet, use bind variables like this:

    to_date(:B1,''MM/DD/YYYY'')

    and add a "using" clause

    using d1, d2;

    I made the changes in the code. Try this:

    declare
      SMO  varchar2(100);
      SDO  varchar2(100);
      SYO  varchar2(100);
      SYDS varchar2(100);
      SYDE varchar2(100);
      a    varchar2(100);
      b    number;
      d1   date;
      d2   date;
    begin
      select to_char(sysdate, 'MM'),
             to_char(sysdate, 'DD'),
             to_char(sysdate, 'YYYY')
        into SMO, SDO, SYO
        from dual;
      SYDS := '0602' || SYO;
      SYDE := '0902' || SYO;
      d1   := to_date(SYDS, 'MMDDYYYY');
      d2   := to_date(SYDE, 'MMDDYYYY');
      execute immediate 'select to_char(DATE_OF_JOIN,''YY''),
                         COUNT(TOTAL_NO_STUDENTS)
                         from CROP_SALE
                         where class=7
                         and to_char(DATE_OF_JOIN,''YYYY'')=to_char(sysdate,''YYYY'')
                         and to_date(to_char(DATE_OF_JOIN),''MM/DD/YYYY'') > :B1
                         and to_date(DATE_OF_JOIN,''MM/DD/YYYY'') < :B2
                         group by to_char(DATE_OF_JOIN,''YY'')'
        into a, b
        using d1, d2;
      dbms_output.put_line(a || b);
    end;
    

    Edit: Fixed the to_date function, which operated on a date. Also fixed an extra | After the selection

  • Is 6i - d2kwutil began to generate an ORA-01403

    Hello everyone, no post long time.

    I have a little problem. We head to a virtual environment, 6i client/server for the moment and this morning that a problem has begun.

    The form called WIN_API. PRELOAD pending a TIMES-NEW-FORM- and this appeal has begun to ORA-01403 return. We always try to understand what might have changed in the environment, the only thing that PRELOAD is likely to cause an error is the call to the DLL to return DLLVersion. So my guess is he is suddenly unable to run this DLL function.

    Suffice it to say turn on debugging of win_api would be much too complicated here politically and technically. I hope that someone has already encountered the problem and might have some suggestions.

    Hoping that,.
    Dave Hemming

    Maybe over the weekend some helpful soul activated AppSense which prevents access to the DLL except a white list and d2kwut60.dll was not on the white list?

  • [8i] Case statement generates ORA-00932: inconsistent data types

    Note: I work with a 8i database (Yes, he's old enough) and in this case, I have to deal with the types of data (e.g. TANK), I gives me to work with.

    I am trying to calculate the amount of time product expected between manufacturing steps. As I found out though, sometimes I get a negative value then subtract the date the previous step ends the date of that ongoing stage begins. Since it is generally impossible to start a later stage before a previous step (imagine trying to screw a cap on a bottle that has no son Cup yet - it just may not happen), what I found is that sometimes two steps are started the same day and finished the same day (although not necessarily the day they started). This situation CAN occur when a person is two steps and connected to two steps at the same time, rather than log on to one, then the other. So what I need to do in these situations, is to replace the negative number by zero (I'll treat the stage as having no time-out).

    Some examples of data:
    (Note: the data set real is the result of a query and has about 200 K lines and columns more, but this should be representative enough to find a solution that works on my real application.)
    CREATE TABLE     steps
    (     item_id          CHAR(25)
    ,     ord_nbr          CHAR(10)
    ,     sub_nbr          CHAR(3)
    ,     step_nbr     CHAR(4)
    ,     start_date     DATE
    ,     finish_date     DATE
    );
    
    INSERT INTO steps
    VALUES ('A','0000000001','001','0010',TO_DATE('01/01/2011','mm/dd/yyyy'),TO_DATE('01/02/2011','mm/dd/yyyy'));
    INSERT INTO steps
    VALUES ('A','0000000001','001','0020',TO_DATE('01/01/2011','mm/dd/yyyy'),TO_DATE('01/02/2011','mm/dd/yyyy'));
    INSERT INTO steps
    VALUES ('A','0000000001','001','0030',TO_DATE('01/05/2011','mm/dd/yyyy'),TO_DATE('01/06/2011','mm/dd/yyyy'));
    INSERT INTO steps
    VALUES ('A','0000000001','002','0010',TO_DATE('01/01/2011','mm/dd/yyyy'),TO_DATE('01/02/2011','mm/dd/yyyy'));
    INSERT INTO steps
    VALUES ('A','0000000001','002','0020',TO_DATE('01/04/2011','mm/dd/yyyy'),TO_DATE('01/04/2011','mm/dd/yyyy'));
    INSERT INTO steps
    VALUES ('A','0000000001','002','0030',TO_DATE('01/06/2011','mm/dd/yyyy'),TO_DATE('01/07/2011','mm/dd/yyyy'));
    INSERT INTO steps
    VALUES ('B','0000000002','001','0005',TO_DATE('01/10/2011','mm/dd/yyyy'),TO_DATE('01/12/2011','mm/dd/yyyy'));
    INSERT INTO steps
    VALUES ('B','0000000002','001','0025',TO_DATE('01/10/2011','mm/dd/yyyy'),TO_DATE('01/12/2011','mm/dd/yyyy'));
    Here's the query I use that sometimes returns negative values:
    SELECT     item_id
    ,     ord_nbr
    ,     sub_nbr
    ,     step_nbr
    ,     start_date - last_step_finished
    FROM     (
         SELECT     s.*
         ,     LAG (s.finish_date)     OVER     (
                                  PARTITION BY     s.item_id
                                  ,          s.ord_nbr
                                  ,          s.sub_nbr
                                  ORDER BY     s.step_nbr
                                  )     AS last_step_finished
         FROM     steps s
         );
    
    Returns:
    
    ITEM_ID                   ORD_NBR    SUB STEP START_DATE-LAST_STEP_FINISHED
    ------------------------- ---------- --- ---- -----------------------------
    A                         0000000001 001 0010
    A                         0000000001 001 0020                        -1.000
    A                         0000000001 001 0030                         3.000
    A                         0000000001 002 0010
    A                         0000000001 002 0020                         2.000
    A                         0000000001 002 0030                         2.000
    B                         0000000002 001 0005
    B                         0000000002 001 0025                        -2.000
    These are the results I want to see:
    ITEM_ID                   ORD_NBR    SUB STEP START_DATE-LAST_STEP_FINISHED
    ------------------------- ---------- --- ---- -----------------------------
    A                         0000000001 001 0010
    A                         0000000001 001 0020                         0.000
    A                         0000000001 001 0030                         3.000
    A                         0000000001 002 0010
    A                         0000000001 002 0020                         2.000
    A                         0000000001 002 0030                         2.000
    B                         0000000002 001 0005
    B                         0000000002 001 0025                         0.000
    And that's what I tried to do to get these results (comment pointed out which line has generated the error):
    SELECT     item_id
    ,     ord_nbr
    ,     sub_nbr
    ,     step_nbr
    ,     CASE
              WHEN     start_dt - last_step_finished     < 0
              THEN     0
              ELSE     start_dt - last_step_finished  -- THIS LINE GENERATES THE ORA-00932 ERROR
         END                         AS days_in_queue
    FROM     (
         SELECT     s.*
         ,     LAG (s.finish_date)     OVER     ( PARTITION BY  s.item_id
                                    ,          s.ord_nbr
                                    ,          s.sub_nbr
                                    ORDER BY     s.step_nbr
                                  )     AS last_step_finished
         FROM     steps s
         );
    I know that I had errors in data type incompatible before with case statements in this particular 8i database, but I can't seem to understand why I'm getting one this time. I think it has something to do with the NULL value which may occur for last_step_finished. Also, if I change the case statement to:
    ,     CASE
              WHEN     start_dt - last_step_finished     < 0
              THEN     NULL
              ELSE     start_dt - last_step_finished  -- THIS LINE GENERATES THE ORA-00932 ERROR
         END     
    the query works fine. But, I'm not NULL, I 0. In the level of this request, I'll take the averages by item_id/step_nbr, and I want that 0 s to be included in the average. (NULL values, as far as I know, would be excluded. AVG(null,_1,_2) = AVG (1,2) = 1.5 NOT AVG (0,1,2) = 1).

    Thanks in advance!

    CASE requires that all expressions to be of the same type. Numeric data type code is 2, then that date produced different internal datatype 14:

    SQL> select dump(1) a,dump(sysdate) b,dump(sysdate - (sysdate - 1)) c from dual;
    
    A                  B                                   C
    ------------------ ----------------------------------- ------------------------------
    Typ=2 Len=2: 193,2 Typ=13 Len=8: 219,7,6,27,13,7,50,0  Typ=14 Len=8: 1,0,0,0,0,0,0,0
    
    SQL> 
    

    Case is supposed to process until the number, but it does not--a bug in some versions. Use explicit to_number:

    ,     CASE
              WHEN     start_dt - last_step_finished     < 0
              THEN     0
              ELSE     to_number(start_dt - last_step_finished)
         END                         AS days_in_queue
    

    SY.

  • Directives IFILE in tnsnames.ora give seemingly harmless errors

    I have a tnsnames.ora file on my local machine that contains a number of directives IFILE, that seems to cause a lot of errors in logging in SQL Developer Page (I use 1.5.4, but the behavior has been consistent since the beta releases).

    My tnsnames.ora file is just a pointer to other files tnsnames.ora, i.e.
    # tnsnames.ora Network Configuration File: c:\oracle\product\11.1.0\client_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    
    IFILE = c:\oracle\product\11.1.0\client_1\Network\Admin\tnsnames.ora.project1
    IFILE = c:\oracle\product\11.1.0\client_1\Network\Admin\tnsnames.ora.clientFoo
    This makes it easier for me to have the client or project specific TNSNames.ora files can I share (or borrow) to other people without having to manually edit a giant single file which combines information from several clients.

    Everytime I open SQL Developer, I get an error in the Page log at the bottom of the screen for each entry IFILE where

    Level = SEVERE
    Sequence = 53
    Elapsed = 63
    Source = oracle.dbtools.raptor.utils.TNSHelper
    Ifile = message not found c:\oracle\product\11.1.0\client_1\Network\Admin\tnsnames.ora.project1

    As far as I know, this is no problem for me - I can connect with happiness to all databases. Of course, I'd like to be able to avoid generating all these errors every time.

    Justin

    Hi Justin,

    I see the error when it is unable to load the file because space.

    It looks like a problem with trim white space:
    works for me (no space after the =): IFILE = / home/turlochcurrent/separation/tmp/testtnsnames/dontfindme
    does not work for me (extra space after the =): IFILE = / home/turlochcurrent/separation/tmp/testtnsnames/dontfindme

    which is buggy/fixed easily if you can confirm that this workaround works around your question.

    -Turloch

  • ERROR "ora-01422" during insertion in the table?

    Hello

    I have created the dynamic action of PL/SQL to insert data but founded by page_item

    
    
     declare 
    x_found_pages number;
    x_auth_id number;
    x_user_id number;
     begin
     x_user_id := :P41_USR_ID; -- this is my page_item _____ successful run When change it to number value .. !
    
    
    
    
          select count(V_APP_PAGES.PAGE_ID) into x_found_pages
          from V_AUTH_DTL V_AUTH_DTL,V_APP_PAGES V_APP_PAGES 
          where V_AUTH_DTL.PAGE_ID!=V_APP_PAGES.PAGE_ID
          and  V_AUTH_DTL.USR_ID = x_user_id;
       
          select T_AUTH.ID into x_auth_id 
          from T_AUTH_DTL T_AUTH_DTL,T_AUTH T_AUTH 
          where T_AUTH_DTL.AUTH_ID=T_AUTH.ID
          and T_AUTH.USR_ID = x_user_id;
    
    
    -- Checking...? 
      if x_found_pages > 0 then
    
            for i in (select V_APP_PAGES.PAGE_ID
               from V_AUTH_DTL V_AUTH_DTL,V_APP_PAGES V_APP_PAGES 
               where V_AUTH_DTL.PAGE_ID!=V_APP_PAGES.PAGE_ID
               and  V_AUTH_DTL.USR_ID = x_user_id)
        
      loop
      insert into T_AUTH_DTL (AUTH_ID,PAGE_ID) values (x_auth_id,i.PAGE_ID);
      end loop;
    
        end if;
    
     end;
    
    
    
    

    Please help me to avoid the ERROR "ora-01422" when running code in the dynamic action...

    Thank you...

    AMR Abdeen wrote:

    I have created the dynamic action of PL/SQL to insert data but founded by page_item

    1. declare
    2. number of x_found_pages;
    3. number of x_auth_id;
    4. number of x_user_id;
    5. Start
    6. x_user_id: =: P41_USR_ID; -It is my page_item _ successfully performed when change to value the number...!
    7. SELECT count (V_APP_PAGES. Page_id) in x_found_pages
    8. of V_AUTH_DTL V_AUTH_DTL, V_APP_PAGES V_APP_PAGES
    9. where V_AUTH_DTL. PAGE_ID! = V_APP_PAGES. PAGE_ID
    10. and V_AUTH_DTL. USR_ID = x_user_id;
    11. Select T_AUTH.ID from x_auth_id
    12. of T_AUTH_DTL T_AUTH_DTL, T_AUTH T_AUTH
    13. where T_AUTH_DTL. AUTH_ID = T_AUTH.ID
    14. and T_AUTH. USR_ID = x_user_id;
    15. -Checking...?
    16. If x_found_pages > 0 then
    17. I'm in (select V_APP_PAGES. PAGE_ID
    18. of V_AUTH_DTL V_AUTH_DTL, V_APP_PAGES V_APP_PAGES
    19. where V_AUTH_DTL. PAGE_ID! = V_APP_PAGES. PAGE_ID
    20. and V_AUTH_DTL. USR_ID = x_user_id)
    21. loop
    22. insert into T_AUTH_DTL (AUTH_ID, PAGE_ID) values (x_auth_id, i.PAGE_ID);
    23. end loop;
    24. end if;
    25. end;

    Please help me to avoid the ERROR "ora-01422" when running code in the dynamic action...

    The error is explicit:

    ORA-01422: exact fetch returns more than number of lines

    Cause: The exact extraction specified number is less than the rows returned.

    Action: Rewrite the query or change the number of rows requested

    This would imply the query in line 16 as County dissociated in the previous one will always return only one row.

    Run

    select T_AUTH.ID into x_auth_id
    from T_AUTH_DTL T_AUTH_DTL,T_AUTH T_AUTH
    where T_AUTH_DTL.AUTH_ID=T_AUTH.ID
    and T_AUTH.USR_ID = :x_user_id
    

    in the workshop of SQL by using the P41_USR_ID value in the variable link to find out how many rows it returns.

    It is likely that the entire block can be replaced by a single INSERT statement. If you provide instructions CREATE TABLE, INSERT statements to create sample data and a clear definition of the requirements that we try to do.

    What is the point of the inclusion of tables aliases that are exactly the same as the names of the tables?

  • SDO ORA-00904 identifier valid after patch 20544696 and 20225988 (CPU Apr 15)

    The seller of our web mapping system uses a syntax that contains the identifier SDO_GEOM. SDO_GEOMETRY and similar. An example simplified using the point constructor ODD as in...
    Select sdo_geom.sdo_geometry (2001, 81989, sdo_geom.sdo_point_type (531599, 184530, null), null, null) double;

    This syntax has stopped working in the TEST database, after I applied the patches April 2015 CPU. It generates an ORA-00904: "SDO_GEOM. "" SDO_GEOMETRY ': identifier not valid, which in fact I was expecting. The package SDO_GEOM in schema MDSYS, often referenced without the option scheme by the public synonym, do not contain a type or function SDO_GEOMETRY. I've never used this syntax and wrote instead...

    Select mdsys.sdo_geometry (2001, 81989, mdsys.sdo_point_type (531599, 184530, null), null, null) double;

    .. of course, who continues to work. However, to my surprise, I found that the syntax of the provider, which generates the ORA-00904 in all databases of fix post, works perfectly well in all our pre patch databases.

    Is the same for all other types in the MDSYS (SDO_ELEM_INFO_ARRAY, SDO_ORDINATE_ARRAY...) schema.

    I'm dealing with the strange situation where I not only understand why something has stopped working; first of all I do not understand why the syntax of the seller has already worked.

    We are using Oracle 11.2.0.4 EE with Oracle Spatial on Windows Server 2008 R2 64-bit. Patches that have been requested are

    1) patch 20544696: WINDOWS DB BUNDLE PATCH 11.2. 0.4.15
    2) patch 20225988: WINDOWS ORACLE JAVAVM COMPONENT BUNDLE PATCH 11.2. 0.4.3

    Kind regards

    Torsten

    Hi Torsten,

    Well, here you have a kind of strange thing Oracle Spatial.  If you told me that

    SELECT SDO_GEOM.SDO_GEOMETRY(2001, 81989, SDO_GEOM.SDO_POINT_TYPE(531599, 184530, NULL), NULL, NULL) FROM dual;
    

    is a valid statement, I'd say of course not. But on my production server which is the power supply 11.2.0.4.5, it works!

    However, on a 12 c test server it does not work.

    All I can say is that you are right in everything you say.  Oracle has removed everything that made this weird syntax once the work and it seems that the PSU April stops for good.  Your provider needs to fix things and perhaps address why they used such a weird thing in the first place.

    Like you I don't see what makes this function on 11g.  There is no synonym that I see.  And if wrap you it in an anonymous block fails

    DECLARE
       foo SDO_GEOMETRY;
    BEGIN
       SELECT SDO_GEOM.SDO_GEOMETRY(2001,81989,SDO_GEOM.SDO_POINT_TYPE(531599,184530,NULL),NULL,NULL)
       INTO foo
       FROM dual;
    END;
    /
    

    Strange thing indeed.  I guess there could be a wider discussion here on what patches are in turn brought in 11g and if the side effects are always worth.

    See you soon,.

    Paul

  • Oracle RAC 12.1.0.2 (GI battery) deployment on OEL 7 (3.8.13 - 35.3.4.el7uek) fails with ORA-27102

    Hi guys,.

    I am currently trying to deploy a complete installation (GI battery) of Oracle RAC 12.1.0.2 cool on OEL 7 (3.8.13 - 35.3.4.el7uek) with 2 nodes for validation purposes. However the installation itself went well, but 'Creation repository for Oracle Grid Infrastructure Management container' step fails with "ORA-01034: ORACLE not available / ORA-27102: out of memory / Linux-x86_64 error: 12: cannot allocate memory". The steps of runInstaller validation completed successfully, but I never take this step of configuration without jumping.

    Here is my configuration which should normally avoid such errors ORA.

    Host

    -bash - $4.2 uname - a

    Linux OELRAC1 3.8.13 - 35.3.4.el7uek.x86_64 #2 SMP Tue Jul 29 23:24:14 CDT 2014 x86_64 x86_64 x86_64 GNU/Linux

    "Creation of repository database for Oracle Grid Infrastructure Management container" error in /oracle/base/cfgtoollogs/dbca/_mgmtdb/trace.log

    From restoration to August 9, 14

    allocated channel: ORA_DISK_1

    channel ORA_DISK_1: SID = 12 type of device = DISK

    channel ORA_DISK_1: from the restore backup set data file

    channel ORA_DISK_1: specifying datafile (s) to restore from backup set

    channel ORA_DISK_1: restore datafile 00003 to + GRID

    channel ORA_DISK_1: backup /oracle/grid/12102/assistants/dbca/templates/MGMTSeed_Database.dfb piece reading

    channel ORA_DISK_1: ORA-19870: error when restoring the backup /oracle/grid/12102/assistants/dbca/templates/MGMTSeed_Database.dfb piece

    ORA-19504: could not create the file "+ GRID.

    ORA-17502: ksfdcre:4 cannot create the file + GRID

    ORA-15001: diskgroup 'GRID' does not exist or is not mounted

    ORA-01034: ORACLE not available

    ORA-27102: out of memory

    Linux-x86_64 error: 12: cannot allocate memory

    Additional information: 2663

    Additional information: 1565392897

    Additional information: 161480704

    switch to the previous backup

    Number of folder of the data file = 3 name = + GRID

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

    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

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

    RMAN-03002: failure of the restore command at 09/08/2014 19:41:47

    ORA-01119: error in creating file of database "+ GRID.

    ORA-17502: ksfdcre:4 cannot create the file + GRID

    ORA-15001: diskgroup 'GRID' does not exist or is not mounted

    ORA-01034: ORACLE not available

    ORA-27102: out of memory

    Linux-x86_64 error: 12: cannot allocate memory

    Additional information: 2663

    Additional information: 1565392897

    Additional information: 1614807040

    RMAN-06956: create the data file failed; try again after removing + OS GRID

    SHM / CPI (check the id of shm with previous information)

    -bash - $4.2 ipcs - a

    -Shared memory segments-

    key shmid owner perms bytes nattch status

    1565360128 0 x 00000000 grid 640 4096 0

    1565392897 0 x 00000000 grid 640 4096 0

    0xfba47600 1565425666 640 24576 29 grid

    Memory of the ASM instance setting

    SQL > see the memory settings

    VALUE OF TYPE NAME

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

    whole big memory_max_target 1076M

    whole large memory_target 1076M

    ASM disk groups

    SQL > select NAME, STATE, TOTAL_MB, USABLE_FILE_MB from v$ asm_diskgroup;

    NAME STATE TOTAL_MB USABLE_FILE_MB

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

    RACK MOUNTED 6144 4868

    / dev/shm to memory_target (more than enough free space)

    -bash - $4.2 df-h

    Size of filesystem used Avail use % mounted on

    tmpfs, 630M 2.4 G 3.0 G 21% / dev/shm

    Kernel for SHM limits set to unlimited parameter

    -bash - $4.2 sysctl - a | grep shm

    kernel.shmall = 1152921504606846720

    kernel.shmmax = 922337203685477580

    User limits on unlimited for memory

    -bash-4, $ 2 cat /etc/security/limits.conf

    # Oracle settings

    grid soft nproc 2047

    grid hard nproc 16384

    grid soft nofile 1024

    grid hard nofile 65536

    Oracle nproc 2047 soft

    Oracle nproc 16384 hard

    Oracle soft nofile 1024

    Oracle hard nofile 65536

    * hard memlock unlimited

    * soft memlock unlimited

    -bash - 4, $ 2 known - grid

    -bash - $4.2 ulimit - a

    the file size (blocks, - c) of base 0

    (kbytes, - d) data seg size unlimited

    scheduling priority (-e) 0

    size of the file (blocks, f) - unlimited

    pending signals (-i) 23953

    Max locked memory (kbytes, - l) unlimited

    size of the memory (k, m) max - unlimited

    open files (-n) 1024

    a size (512 bytes, - p) 8 hose

    (Bytes, - q) POSIX message queues 819200

    real-time priority (-r) 0

    size (Ko, - s) 8192 battery

    time processor (seconds,-t) unlimited

    Max user process (-u) 2047

    virtual memory (KB), - v) unlimited

    the locks on files (-x) unlimited

    So what the hell is wrong here? Why the instance ASM (+ ASM1) returns the error below, even if there is no memory limit / problem. The error with the disk group is also absolutely no sense.

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

    ORA-01119: error in creating file of database "+ GRID.

    ORA-17502: ksfdcre:4 cannot create the file + GRID

    ORA-15001: diskgroup 'GRID' does not exist or is not mounted

    ORA-01034: ORACLE not available

    ORA-27102: out of memory

    Linux-x86_64 error: 12: cannot allocate memory

    Additional information: 2663

    Additional information: 1565392897

    Additional information: 1614807040

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

    Someone at - he encounter the same problem with 12.1.0.2 by deploying the CDB for Grid Infrastructure Management repository? Is there something special with UEK3 (3.8.13 - 35.3.4.el7uek) on 7 OEL? Any necessary special kernel parameter (although the runInstaller controls do not mention)? I'm totally tapped by GI 12.1.0.2.

    Thank you.

    Best regards

    Stefan

    Hi guys,.

    I was finally able to solve this problem.

    She was related to a memory on the provisioning of problem in the virtual environment as both nodes are VMs. Unfortunately none of these errors of memory were populated / pushed somehow in the virtual machine.

    Best regards

    Stefan

  • B2B generate the file with the file extension will start

    Hi guru B2B.

    We have a problem with the name of the output file. We have customized the java class to change the file name out based on operational needs. It works well, but recently, we see the file with the extension name from "start" are generated with size '0 '. The right files always generated with the appropriate content.

    Can someone tell us what is causing this problem?

    Thank you in advance,

    NAFTA Li

    Hi Alena

    I assume you are using a B2B channel tuned to retrieve messages in a folder. Please check if this channel to listen is to have the parameter enable selected marker.

    Disabling the marker Enable should avoid generating the file start in the folder.

    Thank you

    Arun

  • PLSQL - listagg error ORA-01790

    Hello

    I have attached the code below.  The code works if I do not include the union, but the union generates error ORA-01790

    SELECT
      
      DOC.DOC_NO "Doc No",
      DOC.DOC_SHT_NO "Sht",
      DOC_REV_HIST.DRH_RSEQ_REV_NO "Rev",
      DOC.DOC_DESC "Title",
    doc.doc_prim_alt_ref "Alt Doc Name",
      DOC.DOC_DL_CD "WBS",
      DOC_TYPE.DCTP_CD "Type",
      DOC_SUB_TYPE.DST_SUB_TYPE_CD "Sub Type",
      PROJ_ORG.PORG_ORG_CD "Org",
      DISC.DISC_CD "Disc",
      DOC.DOC_SENDER_NAME "Senders Name",
      DOC.DOC_STAT_CD "Status",
      XMTL_HDR.THDR_ISS_DATE "Issued",
      xmtl_hdr.thdr_exp_co_date "Expected Completion Date",
      xmtl_hdr.thdr_act_co_date "Actual Completion Date",
      listagg(xmtl_hdr.thdr_tpur_xmtl_pfx||'-'||xmtl_hdr.thdr_xmtl_no,';') within group (order by doc.doc_no)
    
    
    
    FROM
      DOC,
      SUB_PROJ,
      DOC_REV_HIST,
      DOC_TYPE,
      DOC_SUB_TYPE,
      PROJ_ORG,
      DISC,
      XMTL_HDR,
      ORG_DISC,
      BO_XMTL_DOC_NONRA,
      xmtl_doc_li
    WHERE
    doc.doc_doc_seq_no = doc_rev_hist.drh_doc_doc_seq_no
    AND xmtl_doc_li.tli_thdr_seq_no = xmtl_hdr.thdr_seq_no
    AND xmtl_doc_li.tli_drh_rev_uid = doc_rev_hist.drh_rseq_rev_uid
    AND xmtl_doc_li.tli_drh_doc_seq_no = doc_rev_hist.drh_doc_doc_seq_no
    
      AND  ( XMTL_HDR.THDR_SEQ_NO(+)=BO_XMTL_DOC_NONRA.BXDN_THDR_SEQ_NO  )
      AND  ( BO_XMTL_DOC_NONRA.BXDN_DOC_DOC_SEQ_NO=DOC_REV_HIST.DRH_DOC_DOC_SEQ_NO(+) and
    
    
    DECODE(BO_XMTL_DOC_NONRA.BXDN_NEW_REV_UID,NULL,BO_XMTL_DOC_NONRA.BXDN_DRH_RSEQ_REV_UID,BO_XMTL_DOC_NONRA.BXDN_NEW_REV_UID)=DOC_REV_HIST.DRH_RSEQ_REV_UID(+)  )
      AND  ( DOC.DOC_ORGD_SEQ_NO=ORG_DISC.ORGD_SEQ_NO and DOC.DOC_SUBP_SUB_PROJ=ORG_DISC.ORGD_SUB_PROJ and DOC.DOC_SUBP_PROJ_NO=ORG_DISC.ORGD_PROJ_NO  )
      AND  ( DOC.DOC_SUBP_SUB_PROJ=SUB_PROJ.SUBP_SUB_PROJ and DOC.DOC_SUBP_PROJ_NO=SUB_PROJ.SUBP_PROJ_NO  )
      AND  ( DOC.DOC_DST_DCTP_CD=DOC_TYPE.DCTP_CD and DOC.DOC_DST_DCTP_DG_CD=DOC_TYPE.DCTP_DG_CD  )
      AND  ( ORG_DISC.ORGD_PORG_SEQ_NO=PROJ_ORG.PORG_SEQ_NO and ORG_DISC.ORGD_PROJ_NO=PROJ_ORG.PORG_PROJ_NO  )
      AND  ( DISC.DISC_CD=ORG_DISC.ORGD_DISC_CD  )
      AND  ( DOC.DOC_DST_DCTP_CD=DOC_SUB_TYPE.DST_DCTP_CD  and DOC.DOC_DST_DCTP_DG_CD=DOC_SUB_TYPE.DST_DCTP_DG_CD  and DOC.DOC_DST_SUB_TYPE_CD=DOC_SUB_TYPE.DST_sub_type_cd  and DOC.DOC_SUBP_PROJ_NO=DOC_SUB_TYPE.DST_proj_no  and DOC.DOC_SUBP_SUB_PROJ=DOC_SUB_TYPE.DST_SUB_proj   )
      AND  ( DOC.DOC_DST_DCTP_DG_CD='GEN'  )
      AND  ( DOC_REV_HIST.DRH_RSEQ_SEQ_NO=(select max(B.drh_rseq_seq_no) from doc_rev_hist B where b.drh_doc_doc_seq_no=doc_rev_hist.drh_doc_doc_seq_no and b.drh_bk_rev_status is NULL)  )
      AND  ( DOC.DOC_STAT_CD  =  'ACTV' 
      )
    group by doc.doc_no,doc.doc_sht_no,DOC_REV_HIST.DRH_RSEQ_REV_NO,DOC.DOC_DESC,doc.doc_prim_alt_ref,DOC.DOC_DL_CD,DOC_TYPE.DCTP_CD,
    DOC_SUB_TYPE.DST_SUB_TYPE_CD,PROJ_ORG.PORG_ORG_CD,DISC.DISC_CD,DOC.DOC_SENDER_NAME,DOC.DOC_STAT_CD,XMTL_HDR.THDR_ISS_DATE,xmtl_hdr.thdr_exp_co_date,
    xmtl_hdr.thdr_act_co_date
    
    
    UNION
    
    
    (SELECT
    
      DOC.DOC_NO,
      DOC.DOC_SHT_NO,
      DOC_REV_HIST.DRH_RSEQ_REV_NO,
      DOC.DOC_DESC,
    doc.doc_prim_alt_ref,
      DOC.DOC_DL_CD,
      DOC_TYPE.DCTP_CD,
      DOC_SUB_TYPE.DST_SUB_TYPE_CD,
      PROJ_ORG.PORG_ORG_CD,
      DISC.DISC_CD,
      DOC.DOC_SENDER_NAME,
      DOC.DOC_STAT_CD,
      null
      ,to_date(null)
      ,to_date(null)
      ,to_date(null)
    
    
    FROM
      DOC,
      SUB_PROJ,
      DOC_REV_HIST,
      DOC_TYPE,
      DOC_SUB_TYPE,
      PROJ_ORG,
      DISC,
      ORG_DISC
    WHERE
      ( DOC_REV_HIST.DRH_DOC_DOC_SEQ_NO=DOC.DOC_DOC_SEQ_NO  )
      AND  ( DOC.DOC_ORGD_SEQ_NO=ORG_DISC.ORGD_SEQ_NO and DOC.DOC_SUBP_SUB_PROJ=ORG_DISC.ORGD_SUB_PROJ and DOC.DOC_SUBP_PROJ_NO=ORG_DISC.ORGD_PROJ_NO  )
      AND  ( DOC.DOC_SUBP_SUB_PROJ=SUB_PROJ.SUBP_SUB_PROJ and DOC.DOC_SUBP_PROJ_NO=SUB_PROJ.SUBP_PROJ_NO  )
      AND  ( DOC.DOC_DST_DCTP_CD=DOC_TYPE.DCTP_CD and DOC.DOC_DST_DCTP_DG_CD=DOC_TYPE.DCTP_DG_CD  )
      AND  ( ORG_DISC.ORGD_PORG_SEQ_NO=PROJ_ORG.PORG_SEQ_NO and ORG_DISC.ORGD_PROJ_NO=PROJ_ORG.PORG_PROJ_NO  )
      AND  ( DISC.DISC_CD=ORG_DISC.ORGD_DISC_CD  )
      AND  ( DOC.DOC_DST_DCTP_CD=DOC_SUB_TYPE.DST_DCTP_CD  and DOC.DOC_DST_DCTP_DG_CD=DOC_SUB_TYPE.DST_DCTP_DG_CD  and DOC.DOC_DST_SUB_TYPE_CD=DOC_SUB_TYPE.DST_sub_type_cd  and DOC.DOC_SUBP_PROJ_NO=DOC_SUB_TYPE.DST_proj_no  and DOC.DOC_SUBP_SUB_PROJ=DOC_SUB_TYPE.DST_SUB_proj   )
      AND  ( DOC.DOC_DST_DCTP_DG_CD='GEN'  )
      AND  ( DOC_REV_HIST.DRH_RSEQ_SEQ_NO=(select max(B.drh_rseq_seq_no) from doc_rev_hist B where b.drh_doc_doc_seq_no=doc_rev_hist.drh_doc_doc_seq_no and b.drh_bk_rev_status is NULL)  )
      AND  ( DOC.DOC_STAT_CD  =  'ACTV')
      and  ( DOC.DOC_DOC_SEQ_NO||DOC_REV_HIST.DRH_RSEQ_REV_UID NOT IN (SELECT TLI_DRH_DOC_SEQ_NO||TLI_DRH_REV_UID FROM XMTL_DOC_LI))
      )
    
    FIRST SCREENING EVIL Perhaps =

    SELECT

    DOC. DOC_NO "No Doc",

    DOC. DOC_SHT_NO "leaves."

    DOC_REV_HIST.

    DRH_RSEQ_REV_NO "Rev."

    DOC. DOC_DESC "Title."

    doc.doc_prim_alt_ref 'Doc Alt name',

    DOC. DOC_DL_CD "SRT",.

    DOC_TYPE. DCTP_CD 'Type ',.

    DOC_SUB_TYPE.

    DST_SUB_TYPE_CD "Sub Type.

    PROJ_ORG. PORG_ORG_CD "Org."

    DISC. DISC_CD "Disc."

    DOC. DOC_SENDER_NAME "name of shippers."

    DOC. DOC_STAT_CD 'Status. "

    XMTL_HDR. "Issued," THDR_ISS_DATE

    xmtl_hdr.thdr_exp_co_date "expected completion Date."

    xmtl_hdr.thdr_act_co_date 'Effective completion Date. "

    listagg (xmtl_hdr.thdr_tpur_xmtl_pfx |) » -'|| xmtl_hdr.thdr_xmtl_no, ';') the Group (order by doc.doc_no)

    Of

    SELECT

    DOC. DOC_NO,

    DOC. DOC_SHT_NO,

    DOC_REV_HIST.

    DRH_RSEQ_REV_NO,

    DOC. DOC_DESC,

    doc.doc_prim_alt_ref,

    DOC. DOC_DL_CD,

    DOC_TYPE. DCTP_CD,

    DOC_SUB_TYPE.

    DST_SUB_TYPE_CD,

    PROJ_ORG. PORG_ORG_CD,

    DISC. DISC_CD,

    DOC. DOC_SENDER_NAME,

    DOC. DOC_STAT_CD,

    null

    to_date (null)

    to_date (null)

    to_date (null)

    Of

    SELECT

    DOC. DOC_NO,

    DOC. DOC_SHT_NO,

    DOC_REV_HIST.

    DRH_RSEQ_REV_NO,

    DOC. DOC_DESC,

    doc.doc_prim_alt_ref,

    DOC. DOC_DL_CD,

    DOC_TYPE. DCTP_CD,

    DOC_SUB_TYPE.

    DST_SUB_TYPE_CD,

    PROJ_ORG. PORG_ORG_CD,

    DISC. DISC_CD,

    DOC. DOC_SENDER_NAME,

    DOC. DOC_STAT_CD,

    to_date (null)

    to_date (null)

    to_date (null)

    null

    Of

    Concerning

    Etbin

  • ORA-28132: the MERGE syntax IN does not support security policy

    Hello

    With the help of Oracle 11 g R2.

    I have the following problem:

    If the user attempts to perform a MERGE INTO statement on a table (T1), it receives the error ORA-28132: The MERGE IN syntax does not support security policy.

    Is there a way I can solve this problem by giving the user more rights on this specific table, T1? Or I need to rewrite the SQL code using UPDATE and INSERT instead MERGER?

    I can't grant POLICE ACCESS TAX-FREE, it would be too powerful privilege...

    Please advise,

    M.R.

    You may need to recreate the political VPD:

    Note:

    In previous versions of Oracle database, when you created a strategy Oracle virtual private database on an application that included the MERGE INTO statement, the MERGE INTO declaration could be avoided with a ORA-28132: Merge into syntax does not support security policies error, due to the presence of the virtual private database policy. From Oracle Database 11 g Release 2 (11.2.0.2), you can create policies on applications that include MERGE INTO operations. To do this, in the DBMS_RLS . ADD_POLICY statement_types parameter, include the INSERT , UPDATE , and DELETE statements, or simply omit statement_types setting altogether. Refer to the Oracle Database Security Guide for more information on the application of the strategies on specific types of SQL statement.

    FUSION

  • Generation XML problem in APEX ORA-06502

    Hi, I have a problem with the generation of XML, I developed an application in the APEX, and in an html page, I have this process: +.

    declare
    l_XML varchar2 (32767).
    Start
    .......
    Select xmlElement
    (
    "iva"
    xmlElement ("numeroRuc", J.RUC),
    xmlElement ("razonSocial", J.RAZON_SOCIAL),
    xmlElement ("idRepre", J.ID_REPRE),
    xmlElement ("rucContador", J.RUC_CONTADOR),
    xmlElement ("anio", J.ANIO),
    xmlElement ("my", J.MES),

    xmlElement
    (
    "shopping."
    (
    Select xmlAgg
    (
    xmlElement
    (
    "detalleCompra,"
    -xmlAttributes (K.ID_COMPRA like "COMPRA"),
    xmlForest
    (
    K.COD_SUSTENTO as "codSustento."
    K.TPLD_PROV as "tpldProv."
    K.ID_PROV as "idProv."
    K.TIPO_COMPROBANTE as "tipoComprobante."
    TO_CHAR (K.FECHA_REGISTRO, ' DD/MM/YYYY "") as "fechaRegistro."
    K.ESTABLECIMIENTO as "food."
    K.PUNTO_EMISION as "puntoEmision."
    K.SECUENCIAL as "secuencial".
    TO_CHAR (K.FECHA_EMISION, ' DD/MM/YYYY "") as "fechaEmision."
    K.AUTORIZACION as 'autorizacion. "
    TO_CHAR (K.BASE_NO_GRA_IVA, 9999999999.99) as "baseNoGraIva."
    TO_CHAR (K.BASE_IMPONIBLE, 9999999999.99) as "baseImponible."
    TO_CHAR (K.BASE_IMP_GRAV, 9999999999.99) as "baseImpGrav."
    TO_CHAR (K.MONTO_ICE, 9999999999.99) as "montoIce."
    TO_CHAR (K.MONTO_IVA, 9999999999.99) as "montoIva."
    TO_CHAR (K.VALOR_RET_BIENES, 9999999999.99) as "valorRetBienes."
    TO_CHAR (K.VALOR_RET_SERVICIOS, 9999999999.99) as "valorRetServicios."
    TO_CHAR (K.VALOR_RET_SERV_100, 9999999999.99) as 'valorRetServ100 '.
    ),
    xmlElement
    (
    'air ',.
    (
    Select xmlAgg
    (
    xmlElement
    (
    "detalleAir,"
    xmlForest
    (
    P.COD_RET_AIR as "codRetAir."
    TO_CHAR (P.BASE_IMP_AIR, 9999999999.99) as "baseImpAir."
    TO_CHAR (P.PORCENTAJE_AIR, 999.99) as "porcentajeAir."
    TO_CHAR (P.VAL_RET_AIR, 9999999999.99) as 'valRetAir '.
    )
    )
    )
    ANEXO_COMPRAS p
    where P.ID_COMPRA = K.ID_COMPRA
    AND P.ID_INFORMANTE_XML = K.ID_INFORMANTE_XML
    )
    ),
    xmlElement ("estabRetencion1", K.ESTAB_RETENCION_1),
    xmlElement ("ptoEmiRetencion1", K.PTO_EMI_RETENCION_1),
    xmlElement ("secRetencion1", K.SEC_RETENCION_1),
    xmlElement ("autRetencion1", K.AUT_RETENCION_1),
    xmlElement ("fechaEmiRet1", to_char(K.FECHA_EMI_RET_1,'DD/MM/YYYY'));
    xmlElement ("docModificado", K.DOC_MODIFICADO),
    xmlElement ("estabModificado", K.ESTAB_MODIFICADO),
    xmlElement ("ptoEmiModificado", K.PTO_EMI_MODIFICADO),
    xmlElement ("secModificado", K.SEC_MODIFICADO),
    xmlElement ("autModificado", K.AUT_MODIFICADO)
    )
    )
    SRI_COMPRAS k
    WHERE K.ID IS NOT NULL
    AND K.ID_INFORMANTE_XML = J.ID_INFORMANTE
    AND K.ID BETWEEN 1 AND 25
    )
    )
    ). getClobVal()
    in l_XML
    ANEXO_INFORMANTE j
    where J.ID_INFORMANTE =: P3_MES
    and J.RUC =: P3_ID_RUC
    and J.ANIO =: P3_ANIO
    and J.MES =: P3_MES;

    -HTML
    sys.owa_util.mime_header('Text/XML',false);
    sys. HTP.p ("Content-Length: ' |") length (l_XML));
    sys.owa_util.http_header_close;
    sys. HTP. Print (l_XML);
    end;



    Now my table contains over 900 lines and only when I specifically chose 25 rows of the table "ANEXO_COMPRAS" in the case (AND K.ID BETWEEN 1 AND 25) the generated XML.

    I think the problem may be with the data type that is declared 'varchar2', but I tried with "CLOB" data type, and the error is the same. +

    declare
    l_XML CLOB.
    Start
    -View XML
    sys. HTP.init;
    wwv_flow.g_page_text_generated: = true;
    wwv_flow.g_unrecoverable_error: = true;

    -Select XML
    Select xmlElement
    ( .......

    )
    SRI_COMPRAS k
    WHERE K.ID IS NOT NULL
    AND K.ID_INFORMANTE_XML = J.ID_INFORMANTE
    .........
    ). getClobVal()
    in l_XML
    ANEXO_INFORMANTE j
    where J.ID_INFORMANTE =: P3_MES
    and J.RUC =: P3_ID_RUC
    and J.ANIO =: P3_ANIO
    and J.MES =: P3_MES;

    -HTML
    sys.owa_util.mime_header('Text/XML',false);
    sys. HTP.p ("Content-Length: ' |") length (l_XML));
    sys.owa_util.http_header_close;
    sys. HTP. Print (l_XML);
    end;

    The error generated is ORA-06502: PL/SQL: digital error or value+ _

    Please I need your help. I don't know how to solve this problem, how to use the 'CLOB' data type to the XML file can be generating+.

    Published by: JohannaCevallos07 on 26-sep-2012 10:52

    In the DECLARE section:

    l_xml       clob;
    chunk_size  pls_integer := 32767;
    

    then replace

    htp.print(l_XML);
    

    with the loop:

    for i in 0..trunc((dbms_lob.getlength(l_xml) - 1) / chunk_size)
    loop
      htp.prn( dbms_lob.substr(l_xml, chunk_size, 1 + i*chunk_size) );
    end loop;
    
  • ORA-12514 after immediate cessation

    After an immediate stop, any attempt to connect to the database generates an ORA-12514 error. I can't restart the db from the command line. I can restart by restarting the listener of the db. The listener log indicates that the service is dead after the judgment, but there is no indication why.

    I'm running on Windows 2008 R2 63 bit. IPv6 was disabled and all references are made by IP DNS not entered.

    IM assuming that once you stop the database, you want to connect to the database through the listener
    by default, the database uses dynamic registration and is available through the listener in MOUNT or OPEN State
    to be able to "connect" to one not NOMOUNT (as SYSDBA) not running, or a database, you must manually register the database instance in your listener.ora

    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = TCP)(HOST = myhost.com)(PORT = 1521))
        )
      )
    
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (ORACLE_HOME = /u01/app/oracle/product/11.2.0/dbhome_1)
          (SID_NAME = ORCL)
        )
      )
    
  • ORA-00600: internal error code, arguments: [qctbyt: CFB], [400]

    Hello

    I have an Oracle 10 g Enterprise Edition Release 10.1.0.3.0 database running on a Linux machine.

    I get ' ORA-00600: internal error code, arguments: [qctbyt: CFB], [400], [800], [1], [31], [1], [1], [0] "trying to create a table from a DB table/view distance.
    *On the Linux Box Oracle Database 10g Enterprise Edition Release 10.1.0.3.0*
    create table feed as
    (select * from master@prodx);
    
    ORA-00600: internal error code, arguments: [qctbyt : bfc], [400], [800], [1], [31], [1], [1], [0]
    
    create table feed as
    (select * from master@prody);
    Table Created...
    
    *On a Windows machine Oracle Database 10g Enterprise Edition Release 10.2.0.1.0*
    create table feed as
    (select * from master@prodx);
    Table Created...
    Can someone tell me why table creation script fails to the Linux machine?

    Thank you
    CJM

    Looks like you have a bug:

    https://support.Oracle.com

    Bug 5326327 OERI [qctbyt: CFB] using NLS_LENGTH_SEMANTICS = CHAR

    This note gives a brief overview of bug 5326327.
    The content has been updated the: 12 December 2008
    Click here for the details of each of the sections below.
    Affects:

    Product (component) Oracle (RDBMS) Server
    Supposed to be affected Versions version range<>
    Confirmed versions as being affected
    10.1.0.5
    10.2.0.3
    Generic affected platforms (platforms of all / most affected)
    FIX:

    This problem is fixed in
    10.2.0.4 (Server Patch Set)
    11.1.0.6 (Basic version)
    Symptoms:

    Associated with:

    Internal error may occur (ORA - 600)
    ORA-600 [qctbyt: CFB]
    Support for globalization (NLS)
    NLS_LENGTH_SEMANTICS

  • ORA-39080: cannot create queues during the backup from the rman catalog

    Hello
    I am trying to upgrade my database 10 g and 11 g and I'm trying to back up my rman catalog. However, I get an error. Can someone help me please-

    That's what I give-
    nohup expdp DIRECTORY = EXPORT_DIR userid=rman/adc1243@rmandb full = y job_name = full_rmandb_upg_exp DUMPFILE=EXPORT_DIR:rmandb_upg_exp%U_20100618.dmp LOGFILE = PARALLEL EXPORT_DIR:rmandb_upg_exp_20100618 = 3 &

    and I get this-

    Oracle @ < progd1 >: / home/oracle $tail f nohup.out
    ORA-31626: there is no job
    ORA-31637: could not create user RMAN FULL_RMANDB_UPG_EXP work
    ORA-06512: at "SYS." DBMS_SYS_ERROR', line 95
    ORA-06512: at "SYS." "KUPV$ FT_INT", line 600
    ORA-39080: cannot create queues ' KUPC$ C_1_20100618202950 ' and ' KUPC$ S_1_20100618202950 ' to Data Pump task
    ORA-06512: at "SYS." DBMS_SYS_ERROR', line 95
    ORA-06512: at "SYS." ' KUPC$ QUE_INT ', line 1606
    ORA-04031: unable to allocate 56 bytes of shared memory ('pool feed', 'unknown object', 'pool feed', 'set the allocation callback')

    ORA-04031: unable to allocate 56 bytes of shared memory ('pool feed', 'unknown object', 'pool feed', 'set the allocation callback')

    04031, 00000, "unable to allocate %s bytes of shared memory (\"%s\",\"%s\",\"%s\",\"%s\")"
    // *Cause:  More shared memory is needed than was allocated in the shared
    //          pool.
    // *Action: If the shared pool is out of memory, either use the
    //          DBMS_SHARED_POOL package to pin large packages,
    //          reduce your use of shared memory, or increase the amount of
    //          available shared memory by increasing the value of the
    //          initialization parameters SHARED_POOL_RESERVED_SIZE and
    //          SHARED_POOL_SIZE.
    //          If the large pool is out of memory, increase the initialization
    //          parameter LARGE_POOL_SIZE.  
    

    Stream uses system global area (SGA) memory to store the information required to capture and apply. To allocate memory from the SGA for use by water courses, establish a flow pool in the SGA by specifying the STREAMS_POOL_SIZE parameter. The default value for this setting is 0, which means that the stream instead uses the shared pool memory. If you leave the STREAMS_POOL_SIZE to its default value (0), water courses will be considering using up to 10 percent of the SHARED_POOL_SIZE, then Oracle recommends at least 200 MB for the STREAMS_POOL_SIZE parameter. The source and destination databases must take account of this memory in the SGA.

    Published by: sb92075 on June 18, 2010 19:17

Maybe you are looking for

  • Why my iPhone 6 won't hold a charge?

    Hello My iPhone 6s is a problem to hold a charge. I tried all the tips that are found in the data base of support, but it seems that they do not work. I looked in the settings of the battery as well as to consider whether there was an application usi

  • 1.2 diagnosis of debugging - add a breakpoint in source

    How to add a breakpoint in the source code.I want to record the process on line source particlular dump. I tried now but was notget a dump: MyModule. fun1:127MyModule! myFile.cpp:127myFile.cpp:127 Thanks in advancevidha

  • There seems to be a serious scam involving a suit called "Techon Support"

    original title: TECHON SUPPORT SCAM TARGET WINDOWS USERS It seems to be a serious scam involving a suit called 'Techon Support', which are plausible and persistent, and claim to be working on behalf of Microsoft. They seek to have access to your comp

  • Document stuck in queue - cannot remove

    HP Office Jet Pro 8000 A809 series Wireless Windows 7 64 bit I tried all the usual suggestions.  I've known too many problems with this printer.  If you can save my printer to be sent to recycling heaven.  I would be very happy. Thank you!

  • PSC2175 - using Win 7-64 - will not print PDF

    Printer is connected via USB and works fine except that it won't print PDF.  Whenever I try to print a PDF file (accidentally now), she remains stuck in the print queue and holds everything up behind it. I need (periodically) the content of a PDF doc