Problems with ORA-01950

Hello.

I m trying to create a table in a tablespace different when I m logged in as sys, but then I ve ORA-01950: no privileges on tablespace TBS1

I ve run

MODIFY USER QUOTA 50 M ON TBS1 SYS;

GRANT UNLIMITED TABLESPACE TO SYS.

GRANT CREATE ANY TABLE SYS.

But it Don t work.

The script of the table is:

CREATE TABLE TBS1.table
(
ROW1 CHAR (8 BYTES),
ROW2 TANK (10 BYTE),
ROW3 CHAR (25 BYTES),
ROW4 CHAR (25 BYTES),
ROW5 CHAR (25 BYTES),
ROW6 TANK (10 BYTE),
ROW7 NUMBER,
ROW8 CHAR (1 BYTE),
ROW9 CHAR (1 BYTE),
ROW10 TANK (20 BYTES)
)
TABLESPACE IMO
PCTUSED 0
PCTFREE 10
INITRANS 1
MAXTRANS 255
STORAGE)
64K INITIALS
MINEXTENTS 1
MAXEXTENTS UNLIMITED
PCTINCREASE 0
DEFAULT USER_TABLES
)
LOGGING
NOCOMPRESS
NOCACHE
NOPARALLEL
NOMONITORING;

any suggestion?


Thank you

SYS is not the user who needs quotas. By default, SYS has unlimited tablespace. Make sure that mySMCHA has quota as you create the table in this schema.

Tags: Database

Similar Questions

  • Problem of intermittent connection with ORA-12519: found appropriate TNS:no services manager

    Hello

    The users are connecting to the database using tnsentry in tnsnames.ora, everything is OK. I get complaints of intermittent connection with ORA-12519 problems. Sometimes, users are able to perform tasks on DB with no problems at all, and sometimes the error pops up.

    2014-10-31 10:57:13.0000] DbConnection::connect > connect to: "TLSDB18/***@TLSABPD9"... Got exception: ORA-12519: found appropriate TNS:no services manager


    where, as this connection will smooth usually.


    tlswrk18@illin2492! TLS:tlswrk18 > sqlplus TLSDB18/***@TLSABPD9

    SQL * more: Production of the version 11.2.0.4.0 Fri Oct 31 08:34:17 2014

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

    Connected to:

    Oracle Database 11 g Enterprise Edition Release 11.2.0.4.0 - 64 bit Production

    With partitioning, OLAP, Data Mining and Real Application Testing options


    Please help with this problem.

    The reason may lie with the number of affected processes. Review ORA-12519: appropriate service manager found TNS:no advice and

    https://adesquared.WordPress.com/2012/06/28/fixing-the-root-cause-of-ora-12519-tnsno-appropriate-service-handler-found/

  • problem with tnsnames.ora

    my oracle 11g on GNU / linux.
    I have 10 entries in my tnsnames.ora
    I recently added a new entry.
    With regard to my knowledge everything is correct.
    But, I get the error TNS-12533.

    The other good thing is that it works well on Win machine.

    Can one can fix it. Please guys...

    the entry is:

    xxx =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = xxx.xxx .net)(PORT=1521))

    (CONNECT_DATA =

    (SERVER = SHARED)

    (SID = xxx111)

    )

    )

    Published by: user6476691 on November 6, 2008 13:52

    Published by: user6476691 on November 6, 2008 13:58

    12533, 00000, "settings of ADDRESS TNS:illegal.
    * Cause: An illegal game of the protocol adaptor parameters has been specified. In
    some cases, this error is returned when a connection cannot be made to the
    Transport Protocol.
    * Action: Verify that the destination is accessible using the specified
    Protocol. Check that the settings in the section ADDRESS
    TNSNAMES. ORA. Legal ADDRESS formats of parameter can be found in the
    Oracle operating system specific for your platform documentation.
    Protocols to resolve names to the transport layer (for example the object DECnet
    the names) are vulnerable to this error if it is not correctly configured or names are
    misspelled.

    Looks like there are a few problems with the entry of tns way is defined in the tnsnames.ora file. Maybe it can be due to new lines.

    Remove line breaks or add the following entry

    RAC = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP) (HOST = xxx.xxx .net)(PORT=1521)) (CONNECT_DATA = (SERVER = SHARED) (SID = xxx111)))

  • Import error IMP-00017 and ORA-01950 no privileges on tablespace

    Hello

    I'm doing a full import in a 10.2.0.4 database since a 9.2.0.6 export dumpfile. Tablespaces have already been pre-created. I had this error on a tablespace, and I can't understand why because I was using SYS to import, how is it SYS do not have this privilege. All other tablespaces objects have been created without this problem.

    -IMP-00017: statement failed with error ORACLE 1950:
    "CREATE TABLE 'FYAERLG'...".
    -ORA-01950: no privileges on tablespace "INFOTABLES".

    Help, please.
    Thank you

    -lixidon

    Who is the owner of "FYAERLG"?
    Try to grant the owner of the table, the quota on the tablespace INFOTABLES.

    * Add *.

    Note [95554.1 | https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=95554.1] explains a scenario, which could be the reason of this failure.

    Edited by: Bobcatalog on January 8, 2009 12:49

  • problem with check constraint

    Hi, could someone help me solve a problem with the check constraint.

    CREATE TABLE RMD_2

    (

    NUMBER (10,0) "RMD_ID."

    "ABB" VARCHAR2 (16 BYTE),

    "act_ind CHAR (1 BYTE)

    )

    ALTER TABLE SYSADM. CONTRACT_DATA_EXCHANGE ADD CONSTRAINT 'RMD_2_C1 '.

    CHECK)

    act_ind IN('P','T',)

    )

    SQL > insert

    2 in rmd_2

    3 values(1,'A','X')

    4.

    Insert

    *

    ERROR on line 1:

    ORA-02290: check constraint (RMD_2_C1) violated

    SQL > insert

    2 in rmd_2

    3 values(1,'A','N')

    4.

    1 line of creation.

    SQL > insert

    2 in rmd_2

    3 values(1,'A',)

    4.

    1 line of creation.

    SQL > insert

    so I don't understand why the N value is accepted

    User235910 wrote:

    Hi, could someone help me solve a problem with the check constraint.

    CREATE TABLE RMD_2

    (

    NUMBER (10,0) "RMD_ID."

    "ABB" VARCHAR2 (16 BYTE),

    "act_ind CHAR (1 BYTE)

    )

    ALTER TABLE SYSADM. CONTRACT_DATA_EXCHANGE ADD CONSTRAINT 'RMD_2_C1 '.

    CHECK)

    act_ind IN('P','T',)

    )

    SQL > insert

    2 in rmd_2

    3 values(1,'A','X')

    4.

    Insert

    *

    ERROR on line 1:

    ORA-02290: check constraint (RMD_2_C1) violated

    SQL > insert

    2 in rmd_2

    3 values(1,'A','N')

    4.

    1 line of creation.

    SQL > insert

    2 in rmd_2

    3 values(1,'A',)

    4.

    1 line of creation.

    SQL > insert

    so I don't understand why the N value is accepted

    the posted CONSTRAINT is not on the table RMD_2, but on table SYSADM. CONTRACT_DATA_EXCHANGE

  • Problem with different ASM disaster recovery start - new

    Hello together,

    I had an old net here about it but now will not solve the problem with the points in the old thread. Here's the old: https://community.oracle.com/thread/3608049?start=0 & tstart = 0

    I'm doing a disaster recovery with the 'apex11A' on a new server database, which has an another ASM starts. The old man starts is '+ DGA112_1' and '+ FRA112_1', newcomers are called '+ DATA_QUM169' and '+ FRA_QUM169 '. I changed the settings in the spfile restored by writing in a pfile file and creating the spfile from pfile.

    I tried in several ways. First lay the new ASM with RMAN to the course:

    run
    {
    SET NEWNAME FOR DATABASE TO '+DATA_QUM169';
    restore database until LOGSEQ 24286;
    switch datafile all;
    switch tempfile all;
    recover database until LOGSEQ 24286;
    }
    

    Then I tried it in RMAN by defining the new ASM for each data file:

    run
    {
    SET NEWNAME FOR DATAFILE 1 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 2 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 3 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 4 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 5 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 6 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 7 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 8 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 9 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 10 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 11 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 12 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 13 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 14 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 15 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 16 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 17 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 18 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 19 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 20 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 21 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 22 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 23 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 24 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 25 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 26 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 27 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 28 TO '+DATA_QUM169';
    restore database until LOGSEQ 24286;
    switch datafile all;
    switch tempfile all;
    recover database until LOGSEQ 24286;
    }
    

    Then I tried the bot in one:

    run
    {
    SET NEWNAME FOR DATABASE TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 1 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 2 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 3 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 4 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 5 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 6 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 7 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 8 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 9 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 10 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 11 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 12 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 13 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 14 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 15 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 16 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 17 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 18 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 19 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 20 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 21 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 22 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 23 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 24 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 25 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 26 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 27 TO '+DATA_QUM169';
    SET NEWNAME FOR DATAFILE 28 TO '+DATA_QUM169';
    restore database until LOGSEQ 24286;
    switch datafile all;
    switch tempfile all;
    recover database until LOGSEQ 24286;
    }
    

    Whenever I get one

    Starting restore at 03-FEB-16
    using channel ORA_DISK_1
    
    
    creating datafile file number=1 name=+DATA_QUM169
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 02/03/2016 16:20:41
    ORA-01180: can not create datafile 1
    ORA-01110: data file 1: '+DGA112_1/apex11a/datafile/system.1423.788355253'
    

    The backuppiece which I bring are correctly defined with

    RMAN> catalog backuppiece '/usr/local/oracle/product/11.2.0.4/dbs/m4qt0mnk_1_1', '/usr/local/oracle/product/11.2.0.4/dbs/m3qt0mi2_1_1';
    
    
    cataloged backup piece
    backup piece handle=/usr/local/oracle/product/11.2.0.4/dbs/m4qt0mnk_1_1 RECID=3779 STAMP=902851052
    cataloged backup piece
    backup piece handle=/usr/local/oracle/product/11.2.0.4/dbs/m3qt0mi2_1_1 RECID=3780 STAMP=902851052
    
    
    RMAN> list backup;
    
    
    
    
    List of Backup Sets
    ===================
    
    
    
    
    BS Key  Size       Device Type Elapsed Time Completion Time
    ------- ---------- ----------- ------------ ---------------
    3779    52.61M     DISK        00:00:00     03-FEB-16
            BP Key: 3779   Status: AVAILABLE  Compressed: YES  Tag: TAG20160203T145340
            Piece Name: /usr/local/oracle/product/11.2.0.4/dbs/m4qt0mnk_1_1
    
    
      List of Archived Logs in backup set 3779
      Thrd Seq     Low SCN    Low Time  Next SCN   Next Time
      ---- ------- ---------- --------- ---------- ---------
      1    24285   11073415926066 03-FEB-16 11073416327345 03-FEB-16
      1    24286   11073416327345 03-FEB-16 11073416678326 03-FEB-16
    
    
    BS Key  Type LV Size       Device Type Elapsed Time Completion Time
    ------- ---- -- ---------- ----------- ------------ ---------------
    3780    Full    813.86M    DISK        00:00:00     03-FEB-16
            BP Key: 3780   Status: AVAILABLE  Compressed: YES  Tag: TAG20160203T145042
            Piece Name: /usr/local/oracle/product/11.2.0.4/dbs/m3qt0mi2_1_1
      List of Datafiles in backup set 3780
      File LV Type Ckp SCN    Ckp Time  Name
      ---- -- ---- ---------- --------- ----
      1       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/system.1423.788355253
      2       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/sysaux.1422.788355259
      3       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/undotbs1.1359.788355263
      4       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/users.1362.788355273
      5       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/apex4.1369.788356305
      6       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/apex4_files.1366.788356317
      7       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mms_archiv.1358.788357229
      8       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/planwerte.1357.788357243
      9       Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/btdb_prod.1352.788456613
      10      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mais.1353.788456763
      11      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mms.1354.788456995
      12      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/externe_wirk.1355.788457525
      13      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mais2mt.1356.788458151
      14      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/btdb_read.1351.788458291
      15      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/hwdb2acs.1343.788458329
      16      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/hwdb2sccm.1341.788458657
      17      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/macmon.1340.788458691
      18      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mais_read.1339.788458725
      19      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/mais2srm.266.788458799
      20      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/outdating_sap_user.267.788458859
      21      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/quickcheck.1338.788458887
      22      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/switch.1337.788459139
      23      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/veit_r.1333.788459167
      24      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/test-btdb.1298.795097725
      25      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/apex11dev.986.874230931
      26      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/apex11devbt.985.874230963
      27      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/hrbew.1083.851007823
      28      Full 11073416676796 03-FEB-16 +DGA112_1/apex11a/datafile/optimadata.1032.865951029
    

    I also tried to put the new ASM SQL:

    SQL*Plus: Release 11.2.0.4.0 Production on Wed Feb 3 16:04:05 2016
    
    
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    
    
    
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, Automatic Storage Management and OLAP options
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/system.1423.788355253' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/sysaux.1422.788355259' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/undotbs1.1359.788355263' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/users.1362.788355273' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex4.1369.788356305' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/system.1423.788355253' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 1 - new file '+DATA_QUM169' not found
    ORA-01110: data file 1: '+DGA112_1/apex11a/datafile/system.1423.788355253'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/sysaux.1422.788355259' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 2 - new file '+DATA_QUM169' not found
    ORA-01110: data file 2: '+DGA112_1/apex11a/datafile/sysaux.1422.788355259'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/undotbs1.1359.788355263' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 3 - new file '+DATA_QUM169' not found
    ORA-01110: data file 3: '+DGA112_1/apex11a/datafile/undotbs1.1359.788355263'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/users.1362.788355273' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 4 - new file '+DATA_QUM169' not found
    ORA-01110: data file 4: '+DGA112_1/apex11a/datafile/users.1362.788355273'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex4.1369.788356305' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 5 - new file '+DATA_QUM169' not found
    ORA-01110: data file 5: '+DGA112_1/apex11a/datafile/apex4.1369.788356305'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex4_files.1366.788356317' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex4_files.1366.788356317' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 6 - new file '+DATA_QUM169' not found
    ORA-01110: data file 6: '+DGA112_1/apex11a/datafile/apex4_files.1366.788356317'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mms_archiv.1358.788357229' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mms_archiv.1358.788357229' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 7 - new file '+DATA_QUM169' not found
    ORA-01110: data file 7: '+DGA112_1/apex11a/datafile/mms_archiv.1358.788357229'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/planwerte.1357.788357243' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/planwerte.1357.788357243' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 8 - new file '+DATA_QUM169' not found
    ORA-01110: data file 8: '+DGA112_1/apex11a/datafile/planwerte.1357.788357243'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/btdb_prod.1352.788456613' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/btdb_prod.1352.788456613' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 9 - new file '+DATA_QUM169' not found
    ORA-01110: data file 9: '+DGA112_1/apex11a/datafile/btdb_prod.1352.788456613'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais.1353.788456763' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais.1353.788456763' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 10 - new file '+DATA_QUM169' not found
    ORA-01110: data file 10: '+DGA112_1/apex11a/datafile/mais.1353.788456763'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mms.1354.788456995' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mms.1354.788456995' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 11 - new file '+DATA_QUM169' not found
    ORA-01110: data file 11: '+DGA112_1/apex11a/datafile/mms.1354.788456995'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/externe_wirk.1355.788457525' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/externe_wirk.1355.788457525' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 12 - new file '+DATA_QUM169' not found
    ORA-01110: data file 12:
    '+DGA112_1/apex11a/datafile/externe_wirk.1355.788457525'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais2mt.1356.788458151' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais2mt.1356.788458151' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 13 - new file '+DATA_QUM169' not found
    ORA-01110: data file 13: '+DGA112_1/apex11a/datafile/mais2mt.1356.788458151'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/btdb_read.1351.788458291' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/btdb_read.1351.788458291' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 14 - new file '+DATA_QUM169' not found
    ORA-01110: data file 14: '+DGA112_1/apex11a/datafile/btdb_read.1351.788458291'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hwdb2acs.1343.788458329' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hwdb2acs.1343.788458329' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 15 - new file '+DATA_QUM169' not found
    ORA-01110: data file 15: '+DGA112_1/apex11a/datafile/hwdb2acs.1343.788458329'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hwdb2sccm.1341.788458657' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hwdb2sccm.1341.788458657' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 16 - new file '+DATA_QUM169' not found
    ORA-01110: data file 16: '+DGA112_1/apex11a/datafile/hwdb2sccm.1341.788458657'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/macmon.1340.788458691' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/macmon.1340.788458691' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 17 - new file '+DATA_QUM169' not found
    ORA-01110: data file 17: '+DGA112_1/apex11a/datafile/macmon.1340.788458691'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais_read.1339.788458725' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais_read.1339.788458725' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 18 - new file '+DATA_QUM169' not found
    ORA-01110: data file 18: '+DGA112_1/apex11a/datafile/mais_read.1339.788458725'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais2srm.266.788458799' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/mais2srm.266.788458799' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 19 - new file '+DATA_QUM169' not found
    ORA-01110: data file 19: '+DGA112_1/apex11a/datafile/mais2srm.266.788458799'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/outdating_sap_user.267.788458859' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/outdating_sap_user.267.788458859' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 20 - new file '+DATA_QUM169' not found
    ORA-01110: data file 20:
    '+DGA112_1/apex11a/datafile/outdating_sap_user.267.788458859'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/quickcheck.1338.788458887' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/quickcheck.1338.788458887' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 21 - new file '+DATA_QUM169' not found
    ORA-01110: data file 21: '+DGA112_1/apex11a/datafile/quickcheck.1338.788458887'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/switch.1337.788459139' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/switch.1337.788459139' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 22 - new file '+DATA_QUM169' not found
    ORA-01110: data file 22: '+DGA112_1/apex11a/datafile/switch.1337.788459139'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/veit_r.1333.788459167' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/veit_r.1333.788459167' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 23 - new file '+DATA_QUM169' not found
    ORA-01110: data file 23: '+DGA112_1/apex11a/datafile/veit_r.1333.788459167'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/test-btdb.1298.795097725' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/test-btdb.1298.795097725' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 24 - new file '+DATA_QUM169' not found
    ORA-01110: data file 24: '+DGA112_1/apex11a/datafile/test-btdb.1298.795097725'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex11dev.986.874230931' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex11dev.986.874230931' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 25 - new file '+DATA_QUM169' not found
    ORA-01110: data file 25: '+DGA112_1/apex11a/datafile/apex11dev.986.874230931'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex11devbt.985.874230963' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/apex11devbt.985.874230963' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 26 - new file '+DATA_QUM169' not found
    ORA-01110: data file 26: '+DGA112_1/apex11a/datafile/apex11devbt.985.874230963'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hrbew.1083.851007823' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/hrbew.1083.851007823' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 27 - new file '+DATA_QUM169' not found
    ORA-01110: data file 27: '+DGA112_1/apex11a/datafile/hrbew.1083.851007823'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    
    
    
    
    SYS@apex11A> ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/optimadata.1032.865951029' TO '+DATA_QUM169';
    ALTER DATABASE RENAME FILE '+DGA112_1/apex11a/datafile/optimadata.1032.865951029' TO '+DATA_QUM169'
    *
    ERROR at line 1:
    ORA-01511: error in renaming log/data files
    ORA-01141: error renaming data file 28 - new file '+DATA_QUM169' not found
    ORA-01110: data file 28: '+DGA112_1/apex11a/datafile/optimadata.1032.865951029'
    ORA-17503: ksfdopn:2 Failed to open file +DATA_QUM169
    ORA-15045: ASM file name '+DATA_QUM169' is not in reference form
    

    But my new database will not set the new ASM and I have no why.

    The db_create_file_dest parameter is set correctly, so I think that:

    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    db_create_file_dest                  string      +DATA_QUM169
    

    I forgot something? Would be nice to get help ...

    A big thank you and best regards,

    David

    Your data checkpoint SCN file are in the LOW and HIGH range of the SNA for SEQUENCE 24286.

    Therefore, your UNTIL clause should be 24287 SEQUENCE up to THAT.

    Hemant K Collette

  • Problem with hierarchical query in function PL\SQL

    I have a simple table containing the ID of the parent

    -Create table

    create the table1 table:

    (

    ID NUMBER (12) not null,

    year number 4.

    month NUMBER (2),

    parent_id NUMBER (12)

    );

    -Create/recreate primary, unique and foreign key constraints

    change the table1 table:

    Add primary key constraint PK_TABLE1 (ID);

    change the table1 table:

    Add the foreign key constraint FK_TABLE1_PARENT (PARENT_ID)

    reference TABLE1 (ID);

    data:

    Insert into TABLE1 (id, year, month, parent_id)

    values (5, 2015, 12, 3);

    Insert into TABLE1 (id, year, month, parent_id)

    values (6 (2015), 12, 4);

    Insert into TABLE1 (id, year, month, parent_id)

    values (3 (2015), 11, 1);

    Insert into TABLE1 (id, year, month, parent_id)

    values (4 (2015), 11, 2);

    Insert into TABLE1 (id, year, month, parent_id)

    values (1, 2015, 10, null);

    Insert into TABLE1 (id, year, month, parent_id)

    values (2 (2015), 10, null);

    commit;

    and query

    with h as

    (select t.id, t.year, t.month, CONNECT_BY_ROOT t.id as parent_id from table1 t

    where t.year = 2015 and t.month = 12

    and CONNECT_BY_ROOT t.year = 2015 and CONNECT_BY_ROOT t.month = 10

    connect by prior t.id = t.parent_id)

    Select * from:

    Join table1 t left t.id = h.parent_id;

    It works, but when I put this request in the procedure pl\sql

    create or replace procedure is get_report (p_cur_out on sys_refcursor)

    Start

    Open the p_cur_out for

    with h as

    (select t.id, t.year, t.month, CONNECT_BY_ROOT t.id as parent_id from table1 t

    where t.year = 2015 and t.month = 12

    and CONNECT_BY_ROOT t.year = 2015 and CONNECT_BY_ROOT t.month = 10

    connect by prior t.id = t.parent_id)

    Select * from:

    Join table1 t left t.id = h.parent_id;             

    end get_report;

    /

    They do not compile. And in the fall, with the exception

    Errors of compilation for the PC of the PROCEDURE. GET_REPORT

    [Error: PL/SQL: ORA-00600: internal error code, arguments: [qctcte1], [0], [], [], [], [], [], [], [], [], []]

    Online: 6

    Text: with h as

    Error: PL/SQL: statement ignored

    Online: 6

    Text: with h as

    My version of oracle

    1Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production
    2PL/SQL Release 11.2.0.3.0 - Production
    3CORE Production 11.2.0.3.0
    4AMT for Linux: Version 11.2.0.3.0 - Production
    5NLSRTL Version 11.2.0.3.0 - Production

    What is the problem with my request? Or database? How to solve this problem?

    If you have access to MOS, you can search the reason of it. If you are using left join syntax instead of joining ANSI, owner Oracle procedure compiles and returns the result.

  • ORA-01950: no privileges on tablespace 'APEX_EBS' when to call e-business suite

    Hi all

    We use the Oracle e-business suite 12.1.3 and APEX 5.0

    I created the tablespace and a workspace with the same workspace as TEST id.

    There are table purely to appear on APEX.  In TESTING, I did not grant these 'APPS' tables or users of e - biz, I can call to ebiz and create these APEX records.

    However, after installation, I tried to access it via ebiz PROD, he invites me "ORA-01950: no privileges on tablespace"APEX_EBS"

    I will grant access APEX_EBS apps?

    Thank you, Dorothy

    This isn't a question of privilege object, it is an error to the user not being able to access the table space table used to store the data.

    ORA-01950: no privileges on tablespace

  • Problem with report PDF - external (Apache FOP) - APEX 5.0 + ADR 3.0 + Tomcat 7

    Hello

    I have a problem with the pdf reports.

    I tried to make the steps of Apache FOP missing Oracle Apex installable for 5.0 and 5.0.1 APEX APEX

    It's something wrong with my settings 'external (Apache FOP)'.

    When I download the report I .pdf file.

    I can't open this file with the reader of pdf, but Notepad ++ open it.

    In the first line is: "ORA-20001: the print engine could not be reached because the URL is incorrect or a proxy URL must be specified."

    I have:

    • APEX 5.0 (c:\apex)
    • ADR 3.0.1 (c:\OracleREST-
      • files apex.xml, apex_al.xml, apex_pu.xml and apex_rt.xml are in C:\OracleREST\pathtoconfig\apex\conf,
      • defaults.XML, fop.xml are C:\OracleREST\pathtoconfig\apex)
    • Apache Tomcat 7.0.64 (C:\apache-tomcat-7.0.64)
    • Apache FOP 2.0 (C:\ApacheFOP\fop-2.0) - I don't now how to bind with APEX, ADR and Tomcat

    My fop2pdf.jar file is located in C:\apache-tomcat-7.0.64\webapps\apex\WEB-INF\lib

    If I use ADR as print server is OK, but I need to use non-English characters.

    Can you help me? Please

    AGM

    P.S. I'm sorry for my English, I hope you understand me

    Hi AgaSz,

    AgaSz wrote:

    I have a problem with the pdf reports.

    I tried to make the steps of Apache FOP missing Oracle Apex installable for 5.0 and 5.0.1 APEX APEX

    It's something wrong with my settings 'external (Apache FOP)'.

    When I download the report I .pdf file.

    I can't open this file with the reader of pdf, but Notepad ++ open it.

    In the first line is: "ORA-20001: the print engine could not be reached because the URL is incorrect or a proxy URL must be specified."

    You use DB Oracle 11g or later? If so, you must enable Network Services to use the configured Print Services.

    Reference: The last point mentioned here: PDF of print on demand Express 3.1 and above

    My fop2pdf.jar file is located in C:\apache-tomcat-7.0.64\webapps\apex\WEB-INF\lib

    If I use ADR as print server is OK, but I need to use non-English characters.

    You should not use "External Apache FOP", but you can "Oracle REST Data Services" as an option "print server". But, you should open the ords.war file and replace the Apache FOP associated jar files so that it supports non-English characters.

    You crossed the aforementioned following threads in the thread:

    Recently, I met the following threads:

    3. ASK : if I agree that Apache FOP comes with ADR supports the Base-14 fonts and it's more issue ADR as Oracle APEX, but it will help you qualify for Oracle APEX + ADR as users of at least the next version ADR print server comes with Apache FOP 1.1 and the xmlgraphics - commons-1.5.jar. This will help the people setting up fonts and support for complex Scripts for example, Arabic, Hebrew, hindi and Southeast Asian scripts using Apache FOP comes with ADR as "print server".

    Kind regards

    Kiran

  • upgrade to 12 c causing problems with APEX 4.2.5

    Hey everyone, our dba updated our database this past weekend at 12 c.  Today, we have problems with one of our more complex pages.  Here's our software configuration where after upgrade:

    APEX: Application Express 4.2.5.00.08

    Database: Oracle Database Enterprise Edition Release 12.1.0.2.0 - 64 bit Production 12 c

    The page in question has dynamic actions which fire when a user clicks a button.  The action has 3 processes related to it.  The first is javascript that runs that changes some css classes.  That seems to work.  The second is supposed to be executing pl/sql code (with a dynamic process page element).  This does not appear be to fire.  I watched with firebug and chrome dev tools, but it seems that no ajax call is sent when I click on the button.

    The page seems to generate exceptions in the scenes.  I see the following in newspapers several times on the page.

    ORA-20987: APEX - ORA-00001: unique constraint (APEX_040200.WWV_FLOW_COLLECTIONS_UK) violated

    Unfortunately, I can't determine if what is happening on the loading of the page or under dynamic actions.  Apparently not loading the linked page cause I can't recreate it all by refreshing the page.  But I don't see how it could be created by the dynamic action since they don't seem to be calling the server either.  (no ajax call I see)

    Does anyone know of none known between 4.2.5 and 12 c?  Everything worked well Fri/Sat, so the upgrade must be the cause.

    Thank you!

    It looks like given the scope of the implemented dynamic actions in dynamic instead of static electricity was the problem.  Their transition to static seems to have fixed everything.  Not sure if it "just worked" under the previous version and 12 c was somehow more special or if the parameter got reversed somehow in the process, but it was certainly before.

    Well.  I'll consider it fixed!

  • Problem with installation if updates when installed

    Hello

    as I fought with some problems with Agents, I have studied the docs again.

    That's why I said - allright get later reinstalled (patched) Version the Enterprisemanager.

    When installing, I chose "(obtenir les mises à jour)." These where downloaded, rebooted interfaces.

    However, the installation runs in an error:

    INFO: oracle.sysman.top.oms:stty: Standardeingabe: Unpassender IOCTL (I/O-Control) as das Gerät

    INFO: oracle.sysman.top.oms:stty: Standardeingabe: Unpassender IOCTL (I/O-Control) as das Gerät

    INFO: oracle.sysman.top.oms: enter the SYSMAN user password:

    INFO: oracle.sysman.top.oms:stty: Standardeingabe: Unpassender IOCTL (I/O-Control) as das Gerät

    INFO: oracle.sysman.top.oms:stty: Standardeingabe: Unpassender IOCTL (I/O-Control) as das Gerät

    INFO: oracle.sysman.top.oms:Verify:

    INFO: oracle.sysman.top.oms: Enter password: SYSMAN

    INFO: oracle.sysman.top.oms: process_id:mve1rmclp7j2

    INFO: oracle.sysman.top.oms: [Initializing the RCU Runner MA, run the Action of schema, schema successfully completed Action]

    INFO: oracle.sysman.top.oms:Die Befehlsausfuhrung transx wurde mit dem status 0 sky

    INFO: oracle.sysman.top.oms:process_id:13nzs6kxz2aqx

    INFO: oracle.sysman.top.oms:Failure...

    INFO: oracle.sysman.top.oms:1 or the mistakes that happened in the exercise of the action:

    NEWS: oracle.sysman.top.oms:1):

    ORA-04063: Discovers "SYSMAN. "MGMT$ PA_RECOM_METRIC_SOURCE" contains Fehler

    File: / U02/app/Product/middleware/WHO/SYSMAN/admin/emdrep/SQL/Core/latest/patch/REC/patch_recom_grants. SQL

    Statement: GRANT SELECT ON MGMT$ PA_RECOM_METRIC_SOURCE to MGMT_VIEW

    INFO: oracle.sysman.top.oms:The plugin Repository Configuration failed his method

    And stopped :-(

    Is the code of the view:

    Select

    p.patch_uid as patch_guid,

    p.patch_id as a hotfix,

    p.Abstract as abstract,

    p.classification as the classification,

    t.target_guid as pa_tgt_guid,

    t.target_name as pa_tgt_name,

    t.target_type as pa_tgt_type,

    t.type_display_name as pa_tgt_type_display_name,

    Host.target_name as host_name,

    Host.target_guid as target_guid

    Of

    mgmt_targets host,

    gc_assoc_instances has,

    MOS$ PA_FINAL_RECOM f,.

    MGMT$ ARU_PATCH_RECOM_MD p,.

    mgmt_targets t

    where

    Host.target_type = 'to host '.

    and host.is_group = 0

    and a.assoc_type = 'hosted_by. '

    and f.patch_uid = p.patch_uid

    and f.target_guid = t.target_guid

    and a.source_me_guid = t.target_guid

    and a.dest_me_guid = host.target_guid

    The Table MGMT$ ARU_PATCH_RECOM_MD does not exist - this seems to be the cause of the failure

    Is this a known issue?

    And if so - no work around?

    THX

    Christian

    Edit:

    I checked it on a system installed without the upgrade option selected.

    The table ARU_PATCH_RECOM_MD $ MGMT are here.

    It is being investigated as a bug by our quality assurance team.  For now, please ignore the automatic update and installation should proceed to problem.

  • Problem with Oracle Forms 11 g 2 on linux

    Dear all

    Here's the problem:

    • -J' installed Oracle Forms 11 GR 2 (11.1.2.2.0) on Linux from Oracle using the JDK 1.7.0_79 6.6
    • -J' solved all the problems and issues of the Arab reports.
    • -Now regarding the oracle forms now when I compile the FMAS on WINDOWS and move them to LINUX, they work very well except for forms that use WEBUTIL the form runs but WEBUTIL functions do not work
    • - So I tried to compile these forms on LINUX now WEBUTIL feature works, but all forms (with or without WEBUTIL) compiled under LINUX display this exception message before the race, here is the behavior:

    1. 1 - the form has a trigger CONNECTION on, but here's what's happening
      01.jpg
    2. 2. after pressing ok, it requires logon, and when I try to log displays the ORA-12705 as above and so on

      02.jpg
    3. 3. but after I click on cancel turns on and uses the trigger opening SESSION and works of good form

    Hope there is a solution for this.

    Best regards.

    The problem was because I was using a NLS_LANG that contains a space in the value and it is surrounded by quotes like NLS_LANG ='NLS_LANG ARABIC_SAUDI ARABIA. AR8MSWIN1256', which worked very well with reports.

    but it seems that the quotes were causing problems with forms,

    So I put NLS_LANG to the two forms and reports ARABIC_EGYPT reports.sh default.env. AR8MSWIN1256 OR ARABIC_AMERICA. AR8MSWIN1256

    both work well, now no NLS_LANG, error

    but the question of having to recompile the forms when moved to another server, who I thought he was still a known issue.

    Best regards.

  • What is the problem with my sql says invalid identifier

    CREATE THE TABLE PROJECT

    (proj # NUMBER (6) NOT NULL,)

    p_name VARCHAR2 (15) NOT NULL,

    p_desc VARCHAR2 (150) NOT NULL,

    p_budget NUMBER (8).

    CONSTRAINT project_proj PRIMARY KEY #pname_pk (proj #, p_name));

    CREATE TABLE WORK ORDERS

    (wo # NUMBER (6))

    proj # NUMBER (6).

    wo_desc VARCHAR2 (150).

    wo_assigned VARCHAR2 (30),

    wo_hours NUMBER (5),

    wo_start DATE,

    wo_due DATE,

    wo_complete char (1),

    CONSTRAINT workorders_wo #_pk KEY(wo#) primary SCHOOL.

    CONSTRAINT workorders_wo #_fk FOREIGN KEY (proj #)

    REFERENCES PROJECT (proj #).

    Workorders_wodesc_uk of CONSTRAINT UNIQUE (wo_desc).

    CONSTRAINT workorders_hours_ck CHECK (wo_hours > = 0).

    CONSTRAINT workorders_wocomplete_ck CHECK (wo_complete in ('Y', 'n')));

    Whenever you have an error message the best thing to do is post a copy of your session with your statement sqlplus output. Like this.

    I have no problem with your first statement regarding the syntax and semantics

    SQL> create table project
      2  (
      3  proj# number(6) not null,
      4  p_name varchar2(15)not null,
      5  p_desc varchar2(150)not null,
      6  p_budget number(8),
      7  constraint project_proj#pname_pk primary key (proj#, p_name)
      8  );
    
    Table created.
    

    Second table a problem that his tent to make reference to project.proj #. But the problem is that it doesn't have a primary or unique key defined in this topic.

    SQL> create table workorders
      2  (
      3  wo# number(6),
      4  proj# number(6),
      5  wo_desc varchar2(150),
      6  wo_assigned varchar2(30),
      7  wo_hours number(5),
      8  wo_start date,
      9  wo_due date,
     10  wo_complete char(1),
     11  constraint workorders_wo#_pk primary key(wo#),
     12  constraint workorders_wo#_fk foreign key (proj#)
     13  references project (proj#),
     14  constraint workorders_wodesc_uk unique (wo_desc),
     15  constraint workorders_hours_ck check (wo_hours >=0),
     16  constraint workorders_wocomplete_ck check (wo_complete in ('y' ,'n'))
     17  );
    references project (proj#),
                        *
    ERROR at line 13:
    ORA-02270: no matching unique or primary key for this column-list
    

    I defined a

    SQL> alter table project add constraint project_proj#_uk unique (proj#);
    
    Table altered.
    

    Now, the second table is also created correctly

    SQL> create table workorders
      2  (
      3  wo# number(6),
      4  proj# number(6),
      5  wo_desc varchar2(150),
      6  wo_assigned varchar2(30),
      7  wo_hours number(5),
      8  wo_start date,
      9  wo_due date,
     10  wo_complete char(1),
     11  constraint workorders_wo#_pk primary key(wo#),
     12  constraint workorders_wo#_fk foreign key (proj#)
     13  references project (proj#),
     14  constraint workorders_wodesc_uk unique (wo_desc),
     15  constraint workorders_hours_ck check (wo_hours >=0),
     16  constraint workorders_wocomplete_ck check (wo_complete in ('y' ,'n'))
     17  );
    
    Table created.
    
    SQL>
    

    My Version of DB's

    SQL> select * from v$version where rownum = 1;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    
    SQL>
    
  • Automatic failover with Transport and apply Lag fails with ORA-16798

    Hello
    I configured a physical database maximum Performance, accelerated failover mode standby. I set FastStartFailoverLagLimit to 3 hours (10800 seconds).

    If I understand the Oracle documentation, Fast-Start failover should work with Max Performance, as long the Transport timeout is whithin the FastStartFailoverLagLimit.


    So I started a few scripts, generated some loading, so I have a Transport and apply the shift of 3-4 Minutes.
    Then I killed pmon to cause an automatic failover.

    Failover failed with ORA-16798.

    I know, there is Note 846087.1 , which describes the problem, but I thought that automatic failover should work in this configuration.
    Is this a bug or am I wrong?

    Thank you very much in advance.


    Configuration Data Guard standby:
    -----------------------------------------------

    Role: STANDBY PHYSICS
    State of destination: apply
    Transport delay: 3 minutes 3 seconds (calculated two seconds ago)
    Apply the Lag: 3 minutes 26 seconds (calculated 0 seconds ago)
    Apply the rate: 23,52 MB/s
    Real-time query: OFF
    Occurrence (s):
    ...

    Properties:
    ...
    LogXptMode = "async".
    DelayMins = '0'
    Binding = "optional."
    MaxFailure = '0'
    MaxConnections = '1'
    ReopenSecs = "300"
    NetTimeout = "15"
    RedoCompression = "DISABLE."
    ...

    State of the database:
    SUCCESS

    Fast failover configuration:
    -----------------------------------------------

    Fast-Start Failover: ENABLED

    Threshold: 180 seconds
    Target: < Targetname >
    Observer: < servername >
    Offset limit: 10800 seconds
    Primary closure: TRUE
    Auto-Rétablir: TRUE
    Reconnection of the observer: (none)
    Substitution of the observer: FALSE

    ...


    Messages of the DG - Log:
    -----------------------------------------------
    FAILOVER TO < DB >
    Starting failover to the < DB > database
    Notifying Oracle Clusterware to disassembly for the FAILOVER database
    02/02/2015-13:38:04
    Error running SQL = 604, sql = [ALTER DATABASE RECOVER MANAGED STANDBY DATABASE FI
    ORA-00604: an error has occurred at the SQL level 1 recursive
    ORA-00283: cool cancelled due to errors
    ORA-16171: RECOVER... FINISHING not allowed away for thr 1, seq 34-37
    Failed to retrieve Terminal.
    Database error resource SetState (16798)
    02/02/2015-13:38:08
    Command FAILOVER < DB > completed with error ORA-16798


    The FastStartFailoverLagLimit property specifies the amount of data, in seconds, during which the standby database target can

    delay on the main database on the recovery plan applied. If again applied Eve point database notes that many

    seconds of the primary database redo point generation, accelerated tipping is allowed.

    Errors show a gap for sequences 34-37, which is not optimal for a fast failover.

    Even if FastStartFailoverLagLimit is set to 3 hours, there is too much data loss for the standby site because newspapers are not available on the backup server and the Broker cannot activate the Pb of the day before.

    I recommend to to lean on increase the bandwidth network.

    Concerning

  • Need help with Ora-00001: constraint Unique voilated in catalog synchronization

    Hi Experts...

    Has got some problem in the catalog... desperately need help...

    Oracle: 11 GR 2

    Here is a detail of the error.

    from full resynchronization of the recovery catalog

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

    RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

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

    RMAN-03009: failure of command resync to the default channel on 26/11/2013 18:01:34

    ORA-01403: no data found

    ORA-00001: unique constraint (DNKF_GRIP. BRL_U1) violated

    ========================++++++++++++++++=========================

    Kind regards

    Hei,

    Cool... I have also encountered this kind of error long back... Follow and fortunately we it will be solved.

    A problem with the constraint or the Index after the upgrade of the catalogue in 11 GR 2

    Remove the constraint, if available, otherwise check index, if found the drop... Rest is history...

    First, check the BRL_U1... It can be constrained or an index on the catalog database.

    May be it's problem... the compulsion was abandoned during the catalog migration process, but the corresponding index has not been abandoned.

    The catalog DB:

    -Removal of the index

    SQL > connect rman.

    SQL > select * from user_constraints where constraint_name = "BRL_U1";

    SQL > select * from user_indexes where index_name = "BRL_U1";

    SQL > drop index BRL_U1;

    Once it will be deposited now connect to the production database to connect to the catalog and re-synchronize... It should work like that...

    RMAN target / catalog rman/password@catalog_db_name

    RMAN > catalog resync;

    from full resynchronization of the recovery catalog

    full complete Resync

    RMAN > exit

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

    Kind regards

    Firdous Shah

Maybe you are looking for

  • HP 110-219: replacement motherboard

    Hello guys. its my first time posting a question and I would ask to recommend what motherboard to buy as a replacement for my current. I would like to put a graphic as a 960 gtx card but the motherboard doesn't have pcie connectors and the graphics c

  • x 1 carbon bluetooth problem

    Hi my X 1 carbon only remains not connected to other devices bluetooth for more than 5-10seconds before disconnecting. The devices are headphones, speakers and my nokia lumia 920. I was previously able to stay in contact with these devices A device t

  • 2130: e-mail scaning

    Can you recommend a package of e-mail which will allow me to scan directly to him with my new all-in-one printer to 2130. Thank you

  • T61p (6460-8XU) - UDMA 6 for the main hard drive HTS722020K9SA00 HTS

    Hello I have a T61p with a HD 200 GB (Hitachi HTS HTS722020K9SA00 FDE) and XP Prof SP3 running on it. HD Tune 2.55 utility says: Support: UDMA Mode 6 (TONGA/133) Active: UDMA Mode 5 (TONGA 100) Drivers/BIOS etc. must be up-to-date. Is it possible to

  • Geniune Intel causing BSOD

    MS community, I added some hardware from Razer (Blackwidow Ultimate keyboard & DeathAdder mouse) my system, a month or two before, and Synapse 2.0 caused BSOD regularly, so I took out starter, and my system has worked very well, until the last two we