Oracle 11g R1 - with SEPARATE problem

A very simple request: I want to select the contracts, suppliers, products and count how many times product ordered and how many flags have been used in these orders.

CREATE TABLE T1 AS
SELECT 'A1' ORD, 1 LOCN, 123 CONT VNDR 111, 'P' FLG, SYSDATE DOUBLE DT
UNION SELECT 'A2', 1, 123, 111, 'P', DOUBLE SYSDATE
UNION SELECT 'A3', 1, 123, 101, THE FROM ', DOUBLE SYSDATE
UNION SELECT 'A4', 1, 233, 137, 'P', DOUBLE SYSDATE
UNION SELECT 'A5', 1, 233, 137, THE FROM ', DOUBLE SYSDATE
UNION SELECT 'A6', 1, 354, 321, THE FROM ', DOUBLE SYSDATE
UNION SELECT 'A7' 1, 776, 656, THE FROM ', DOUBLE SYSDATE

;

CREATE TABLE T2 AS
SELECT 123 CONT, VNDR 111, 50 DOUBLE PROD
UNION SELECT 123,111,60 FROM DUAL
UNION SELECT 123,111,65 FROM DUAL
UNION SELECT 233,137,60 FROM DUAL
UNION SELECT 233,137,11 FROM DUAL
UNION SELECT 354,321,44 FROM DUAL
UNION SELECT 776,656,14 FROM DUAL
UNION SELECT 123,191,49 FROM DUAL

;

AS DUP
(
SELECT T1. SUITE
T1. VNDR
T2. PROD
COUNT (DISTINCT T1. FLG) FLG_CNT
COUNT (*) PROD_CNT
FROM T1
T2
WHERE T1. CONT = T2. SUITE
AND T1. VNDR = T2. VNDR
GROUP T1. SUITE
T1. VNDR
T2. PROD
HAVING COUNT (*) > 1
)
SELECT DISTINCT
T1. SUITE
T1. VNDR
DUP. PROD
T1. FLG
T1. DSB
T1. DT
DUP. FLG_CNT
DUP. PROD_CNT
FROM T1
DUP
T1. CONT = DUP. CONT
AND T1. VNDR = DUP. VNDR
AND T1. LOCN = 1

ORDER OF DUKE. PROD_CNT / / DESC
DUP. FLG_CNT / / DESC
T1. SUITE
T1. VNDR
DUP. PROD
T1. FLG
T1. DSB
;

When I ran it I got

ORA-01791: not a SELECTed expression

01791 00000 - "not a selected expression.

* Cause:

* Action:

Error on line: column 25: 27

Now let's remove DISTINCT COUNT

Œuvres query!

Now makes it possible to SEPARATE the County drop and SEPARATE from the SELECT

Query still works!

Now put all separate and comment 'AND T1. LOCN = 1 "

Query works again!


Now put an "ORDER BY" comment

Application, it works!

What a mess!

Why the use of SEPARATE leads to an error?

This forum is for discussions of installation problems.

I think you want the forum SQL-PL/SQL – PL/SQL and SQL

Tags: Database

Similar Questions

  • Oracle 11g compatibility with oracle 10g and 9i?


    Hi all



    I have a few questions about the compatibility of 11g.



    Client Oracle 11g is compatible with oracle 10g client that is already installed on the desktop computer?


    If any changes to do so and where?



    Is oracle 11g oracle 10 g/9i on the same server where are installed the 10 g/9i compatible?


    Concerning

    If the question you ask yourself is 'Can I have multiple versions of the Oracle installed on the same client computer' or "Can I have several versions of the database Oracle installed on the same machine", the answer is Yes. As long as you install each version in another House of Oracle, and we are talking about versions 8.1.5 and upward, you can have as many different versions of the client and the database on the same machine as you wish. Of course, you are still subject to the support of operating system compatibility (e.g. Oracle 9.2 did not had been supported on Windows 2008, so do not expect to work).

    The only problem you may have would be with components that are not compatible with several House. This mainly affects third-party Windows drivers (drivers third party ODBC, etc.) who do not know how to work with multiple Oracle homes and end up using which version of the client Oracle happens to appear first in the path.

    Justin

  • Oracle 11 GR 1 material - with SEPARATE problem

    A very simple request: I want to select the contracts, suppliers, products and count how many times product ordered and how many flags have been used in these orders.

    CREATE TABLE T1 AS
    SELECT 'A1' ORD, 1 LOCN, 123 CONT VNDR 111, 'P' FLG, SYSDATE DOUBLE DT
    UNION SELECT 'A2', 1, 123, 111, 'P', DOUBLE SYSDATE
    UNION SELECT 'A3', 1, 123, 101, THE FROM ', DOUBLE SYSDATE
    UNION SELECT 'A4', 1, 233, 137, 'P', DOUBLE SYSDATE
    UNION SELECT 'A5', 1, 233, 137, THE FROM ', DOUBLE SYSDATE
    UNION SELECT 'A6', 1, 354, 321, THE FROM ', DOUBLE SYSDATE
    UNION SELECT 'A7' 1, 776, 656, THE FROM ', DOUBLE SYSDATE

    ;

    CREATE TABLE T2 AS
    SELECT 123 CONT, VNDR 111, 50 DOUBLE PROD
    UNION SELECT 123,111,60 FROM DUAL
    UNION SELECT 123,111,65 FROM DUAL
    UNION SELECT 233,137,60 FROM DUAL
    UNION SELECT 233,137,11 FROM DUAL
    UNION SELECT 354,321,44 FROM DUAL
    UNION SELECT 776,656,14 FROM DUAL
    UNION SELECT 123,191,49 FROM DUAL

    ;

    AS DUP
    (
    SELECT T1. SUITE
    T1. VNDR
    T2. PROD
    COUNT (DISTINCT T1. FLG) FLG_CNT
    COUNT (*) PROD_CNT
    FROM T1
    T2
    WHERE T1. CONT = T2. SUITE
    AND T1. VNDR = T2. VNDR
    GROUP T1. SUITE
    T1. VNDR
    T2. PROD
    HAVING COUNT (*) > 1
    )
    SELECT DISTINCT
    T1. SUITE
    T1. VNDR
    DUP. PROD
    T1. FLG
    T1. DSB
    T1. DT
    DUP. FLG_CNT
    DUP. PROD_CNT
    FROM T1
    DUP
    T1. CONT = DUP. CONT
    AND T1. VNDR = DUP. VNDR
    AND T1. LOCN = 1

    ORDER OF DUKE. PROD_CNT / / DESC
    DUP. FLG_CNT / / DESC
    T1. SUITE
    T1. VNDR
    DUP. PROD
    T1. FLG
    T1. DSB
    ;

    When I ran it I got

    ORA-01791: not a SELECTed expression

    01791 00000 - "not a selected expression.

    * Cause:

    * Action:

    Error on line: column 25: 27

    Now let's remove DISTINCT COUNT

    Œuvres query!

    Now makes it possible to SEPARATE the County drop and SEPARATE from the SELECT

    Query still works!

    Now put all separate and comment 'AND T1. LOCN = 1 "

    Query works again!


    Now put an "ORDER BY" comment

    Application, it works!

    What a mess!

    Why the use of SEPARATE leads to an error?

    I'm a contributor to the original poster.  I managed to recreate the issue on our 11.1.0.7 of databases, but not on any other version including 9.2, 10.2, 11.2.0.3, 11.2.0.4 and 12.1.0.2.  I guess it's a 11.1.0.7 bug or a bug introduced by a patch we have above 11.1.0.7.

    -Bobby

    Here is the log:

    SQL >
    SQL > select * from v version $;

    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11 g Enterprise Edition Release 11.1.0.7.0 - 64 bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE Production 11.1.0.7.0
    AMT for HP - UX: 11.1.0.7.0 - Production Version
    NLSRTL Version 11.1.0.7.0 - Production

    SQL >
    SQL > drop table t1;

    Deleted table.

    SQL > drop table t2;

    Deleted table.

    SQL >
    SQL > CREATE TABLE T1 AS
    2. SELECT 'A1' ORD, 1 LOCN, 123 CONT VNDR 111, 'P' FLG, SYSDATE DOUBLE DT
    3 UNION SELECT 'A2', 1, 123, 111, 'P', DOUBLE SYSDATE
    4 UNION SELECT 'A3', 1, 123, 101, THE FROM ', DOUBLE SYSDATE
    5 UNION SELECT 'A4', 1, 233, 137, 'P', DOUBLE SYSDATE
    6 UNION SELECT 'A5', 1, 233, 137, THE FROM ', DOUBLE SYSDATE
    7 UNION SELECT "A6", 354, 1, 321, THE FROM ', DOUBLE SYSDATE
    UNION SELECT 'A7' 8, 776, 1, 656, THE FROM ', DOUBLE SYSDATE
    9;

    Table created.

    SQL >
    SQL > CREATE TABLE T2 AS
    2. SELECT 123 CONT, VNDR 111, 50 DOUBLE PROD
    3 UNION SELECT 123,111,60 FROM DUAL
    4 UNION SELECT 123,111,65 FROM DUAL
    5 UNION SELECT 233,137,60 FROM DUAL
    6 UNION SELECT 233,137,11 FROM DUAL
    7 UNION SELECT 354,321,44 FROM DUAL
    8 UNION SELECT 776,656,14 FROM DUAL
    9 UNION SELECT 123,191,49 FROM DUAL
    10;

    Table created.

    SQL >
    SQL > DUP AS
    () 2
    3. SELECT T1. SUITE
    4            ,T1. VNDR
    5            ,T2. PROD
    6, COUNT (DISTINCT T1. FLG) FLG_CNT
    7, COUNT (*) PROD_CNT
    8 FROM T1
    9, T2
    10. WHERE T1. CONT = T2. SUITE
    11 AND T1. VNDR = T2. VNDR
    12 GROUP T1. SUITE
    13              ,T1. VNDR
    14              ,T2. PROD
    15 HAVING COUNT (*) > 1
    16)
    17 SELECT DISTINCT
    18 T1. SUITE
    19, T1. VNDR
    20, DUP. PROD
    21, T1. FLG
    22, T1. DSB
    23, T1. DT
    24, DUKE. FLG_CNT
    25, DUP. PROD_CNT
    26 OF T1
    27, DUP
    28. WHERE T1. CONT = DUP. SUITE
    29 AND T1. VNDR = DUP. VNDR
    30 AND T1. LOCN = 1
    31 ORDER OF DUP. PROD_CNT / / DESC
    32, DUP. FLG_CNT / / DESC
    33, T1. SUITE
    34, T1. VNDR
    35, DUP. PROD
    36, T1. FLG
    37, T1. DSB
    38;
    COUNT (DISTINCT T1. FLG) FLG_CNT
    *
    ERROR on line 6:
    ORA-01791: not a SELECTed expression

  • Oracle 11g mediator WebService security problem-cannot call endpoint URI "" successfully due to: javax.xml.soap.SOAPException: javax.xml.soap.SOAPException: bad response: 401 Unauthorized

    Hi all

    I have a RS of mediator who invokes an external secure Web service. Despite I put the username and password values, I get HTTP 401 error.

    Here is my source of mp plan.  Any comment or help is appreciated.

    <? XML version = "1.0" encoding = "UTF - 8"? >

    < mediator name = "AIASystem.OSM.ProcessSalesOrderFulfillmentOSMCFSCommsWSProducer_RS" wsdlTargetNamespace =" " http://Oracle.com/ESB/namespaces/AIASystem_OSM "xmlns =" " http://xmlns.Oracle.com/SCA/1.0/mediator "> "

    < name of operation = "run" >

    <>switch

    < name = "ProcessSalesOrderFulfillmentOSMCFSCommsWSProducer.CreateOrderBySpecification - case" executionType 'direct' = > "

    < action >

    < transform >

    < name of part = "$out.» CreateOrderBySpecificationRequest ".

    function = ' xslt (xsl/ProcessSalesOrderFulfillmentEBM_To_CreateOrderBySpecification.xsl $in.). ProcessSalesOrderFulfillmentEBM) "/ >"

    < / transform >

    < assign >

    < copy value = "admin".

    ' xmlns:wsse1 = ' http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd "

    target = "$out." Header.wsse1_Security/wsse1:Security/wsse1:UsernameToken/wsse1:username"/ >

    < copy value = "Data1234".

    ' xmlns:wsse1 = ' http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd "

    target = "$out." Header.wsse1_Security/wsse1:Security/wsse1:UsernameToken/wsse1:password"/ >

    < / assign >

    < invoke reference = "ProcessSalesOrderFulfillmentOSMCFSCommsWSProducer."

    operation = "CreateOrderBySpecification" >

    < onReply >

    < transform >

    < name of part = "$out.» ProcessSalesOrderFulfillmentResponseEBM ".

    function = ' xslt (xsl/CreateOrderBySpecificationResponse_To_ProcessSalesOrderFulfillmentResponseEBM.xsl $in.). CreateOrderBySpecificationResponse) "/ >"

    < / transform >

    < response / >

    < / onReply >

    < onFault type = "InvalidOrderDataFault" >

    < transform >

    < name of part = "$out.» OrderFault ".

    function = ' xslt (xsl/InvalidOrderDataFault_To_OrderFault.xsl $in.). InvalidOrderDataFault) "/ >"

    < / transform >

    < fault type = "OrderFault" / >

    < / onFault >

    < / call >

    < / action >

    < / Body >

    < / switch >

    < / operation >

    < / Ombudsman >

    Hi all

    The problem is solved by adding the three properties below to the definition of the external service in composite.xml.

    Best regards

    Override = "may" > true

               

    Override = "may" > username

               

    Override = "may" > password

  • The EOM to Oracle 11g works with clients of 9i

    If I install OEM 11 g on a Windows Server, I download emca data to a database in Oracle 9i on a SUN Server?

    Take a look at the Certification Oracle Enterprise Manager Grid Control auditor [ID 412431.1] on My Oracle Support.
    Here you will find all the combinations that have been certified (11, 10.2) WHO works with as agent, database, etc.

    Eric

  • With SEPARATE problem

    Why this code does not work?
    Select 
        Distinct(Substr(to_char(termid),1,2))
    
    From StoredGrades
    
    Where termid >= 1800
    
    Order By termid
    [Error code: 1791, SQL State: 42000] ORA-01791: not a SELECTed expression

    Hmm...

    satyaki>
    satyaki>select * from v$version;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    
    Elapsed: 00:00:01.54
    satyaki>
    satyaki>
    satyaki>select distinct(substr(to_char(empno),1,2)) res
      2  from emp
      3  where sal > 1000
      4  order by empno;
    order by empno
             *
    ERROR at line 4:
    ORA-01791: not a SELECTed expression
    
    Elapsed: 00:00:00.13
    satyaki>
    satyaki>
    satyaki>select distinct(substr(to_char(empno),1,2)) res
      2  from emp
      3  where sal > 1000
      4  order by substr(to_char(empno),1,2);
    
    RE
    --
    74
    75
    76
    77
    78
    79
    
    6 rows selected.
    
    Elapsed: 00:00:00.05
    satyaki>
    

    Kind regards.

    LOULOU.

  • How to create the new database in oracle 11g

    Hello
    I m new in oracle 11g, I downloaded oracle 11g and with the help of the guide of the developer-2 days, I learned all the SQL queries, but I worked with human resources database.
    Now, I want to create my own database with the required tables. Can anyone help me how I can make my own database in oracle 11g.

    Thank you
    Manna

    870692 wrote:
    Hello
    I m new in oracle 11g, I downloaded oracle 11g and with the help of the guide of the developer-2 days, I learned all the SQL queries, but I worked with human resources database.
    Now, I want to create my own database with the required tables. Can anyone help me how I can make my own database in oracle 11g.

    Thank you
    Manna

    Be sure to distinguish between the terms and the database schema. Other products, make them bad. It would be a HR diagram (or a user, which is the same in Oracle). If you do not need to use the database Wizard, unless you are working with a new host with no database.

    A simple way would be to get the DDL to create the HR schema and modify it for your own. It can be extracted from your database in several ways, or you can copy the hr_cre.sql to your own script and change. The two ways are educational, and you can google for instructions.

  • Oracle Discoverer 4i (Portal db - oracle 8i) connectivity with database 11g problem

    Hi all

    We have oracle discoverer 4i with Portal db (oracle 8i).

    Connect to external databases by using links in the portal db db and reports will use the link db to retrieve data from views in external databases.

    External databases, we have been connecting is oracle 10g version and now we have improved these databases to version 11g.

    Now I have a created a new database link to this 11g database and I have created a new EUL in the portal to connect to this database 11g.

    But when I try to create a report using the discoverer of this new EUL after login for the discoverer we get an "Unable to connect to the database" error.

    We all have the privilege of necesscary to the user and the new database link works perfectly well. (when we try to query directly using SQL as database portal using this db link the query works perfectly).

    I'm not sure if it is a compatibility issue in accessing an 11g database since oracle disk 4i.

    Can any advise if this is the case and if there is no work around for this?

    Kind regards

    REDA

    You say that you are having problems with a link of database from 8i to 11 g (pl exact position of 4-digit versions)? If so, expect as database of links between these two versions are not supported. Is there a reason you can't pass the portal of databases of at least 10 g 2?

    See MOS Doc 207303.1

    HTH
    Srini

  • Oracle 11g with problem of pdf cocoon.war and glassfish?

    Hi all
    I m install oracle 11g express on CentOS OS, oracle apex earphone 1.1.2.131.15 5.6
    GlassFish v2 and cocoon 2.1.11 and connect to oracle apex glasfish works very well

    Problem start when I had cocoon xml build and deploy cocoon.war on glassfish,
    addition of fop_post on cocoon/fop_post (as described on http://carlback.blogspot.com/2007/03/apex-cocoon-pdf-and-more.html) but the pdf don't work!

    (I've been putting all the steps on the machine of 11.2 to 32-bit suse and ubuntu 8.04 - 32 bytes and pdf open work well)
    Y at - he no idea what happen whith this pdf error?
    Is the problem with 64 bytes some specific parameters, with java jdk, Cocoon, glassfish, or something on apex of oracle 11g?

    Gordan

    Published by: useruseruser on June 20, 2011 21:49

    Hi Gordon,.

    Once again, great to hear that!
    Could you rent close this thread and mark any post useful or correct if your question is answered?

    Thank you

    Udo

  • Problem with Oracle 9i and Oracle 11g

    Hello
    I have 2 Installation of Oracle: Oracle 9i client and Server Oracle 11.2
    Oracle 9i to: C:\oraclient9\
    Oracle 11g: C:\app\a.l\product\11.2.0\

    I have an application that has to connect to Oracle via ODBC, but whenever I try to connect looking for odbc Oracle 9i and I get this error:
    ORA-12541: TNS no listener

    If I try to boot with sqlplus to: start-> run-> sqlplusw get Oracle 9i version

    If I'm running sqlplus from start-> program-> Oracle 11-> I can connect properly.

    If I try to create a new ODBC it always plug the Oracle version 9i.

    I tried:
    Set ORACLE_HOME=C:\app\a.l\product\11.2.0\dbhome_1
    Set ORACLE_SID = ORCL

    but when I try: sqlplus / as sysdba I get this error:
    14 error initializing SQL * more
    SP1 file < lang > .msb not found message
    SP2-0750: you may need to set ORACLE_HOME in your Oracle software directory

    If I try to boot with sqlplus to: start-> run-> sqlplusw get Oracle 9i version with the error:
    ORA-12541: TNS no listener

    Variables environment variables in the path are:
    C:\oraclient9\bin; C:\Program Files\Oracle\jre\1.3.1\bin; C:\Program Files\Oracle\jre\1.1.8\bin; C:\app\a.l\product\11.2.0\dbhome_1\BIN; C:\app\a.l\product\11.2.0\dbhome_1\bin;%SystemRoot%\System32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SystemRoot%\system32\WindowsPowerShell\v1.0\; C:\Program Files\Sybase\SQL Anywhere 9\win32. C:\Program Files\Sybase\Shared\win32; C:\Program Files\Sybase\SQL Anywhere 9\drivers; C:\Program Files\Sybase\Shared\Sybase 4.2 Central; c:\Program Files\Microsoft SQL Server\90\Tools\binn\; C:\Progra~1\XRay



    tnsnames 11g:
    # tnsnames.ora Network Configuration File: C:\app\a.l\product\11.2.0\dbhome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    
    LISTENER_ORCL =
      (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    
    
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
        )
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
        )
      )
    
    ORCL =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = orcl.domopenplan.local)
        )
      )
    tnsnames 9i:
    # TNSNAMES.ORA Network Configuration File: C:\oraclient9\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    
    ORCL.DOMOPENPLAN.LOCAL =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        )
        (CONNECT_DATA =
          (SERVICE_NAME = orcl.domopenplan.local)
        )
      )
    11g listener.ora:
    # listener.ora Network Configuration File: C:\app\a.l\product\11.2.0\dbhome_1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = C:\app\a.l\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:C:\app\a.l\product\11.2.0\dbhome_1\bin\oraclr11.dll")
        )
        (SID_DESC =
          (GLOBAL_DBNAME = orcl.domopenplan.local)
          (SID_NAME = orcl.domopenplan.local)
          (ORACLE_HOME = C:\app\a.l\product\11.2.0\dbhome_1)
          (PROGRAM = extproc)
          (ENVS = "EXTPROC_DLLS=ONLY:C:\app\a.l\product\11.2.0\dbhome_1\bin\oraclr11.dll")
        )
      )
    
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
          (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.2.103)(PORT = 1521))
        )
      )
    
    ADR_BASE_LISTENER = C:\app\a.l
    Do you have any idea how I can create a new ODBC to connect to Oracle 11g?

    Thanks in advance!

    opening for the system control window Server DB & question OS command sequence

    lsnrctl status
    set
    lsnrctl service

    COPY orders & results then PASTE all come back here

  • Oracle 11g R2 on Oracle Linux 7 loading problems

    It drives me crazy!  I use VMPlayer (6.0.4 build-2249910) to load the Oracle 7 and have no problems at all.  However, when I install Oracle 11 g R2, that's when I encounter problems (just loading software; not to create a database at the moment).  First of all, let me tell you, I'm not some process that I found on the internet several times.  There are slight differences in some of them, but essentially, I used the website below to install Oracle 11 g 2 on Oracle Linux 7:

    ORACLE-BASE - Oracle Database 11g Release 2 (11.2) Installation on Linux Oracle 7 (OL7)

    When running through the installation, I first encountered the ctx error:

    ctx.png

    I could find anything on this subject, so I continued in this way.  To learn more about this later...

    The next error I get is:

    emagent.png

    This second error was easy to be supported by the following:

    During the connection phase, you will encounter an error invoking the file 'ins_emagent.mk '. To resolve this problem, change the "$ORACLE_HOME/sysman/lib/ins_emagent.mk", do a search and replace the line below.

    FROM:

    $(MK_EMAGENT_NMECTL)

    TO  :

    $(MK_EMAGENT_NMECTL) -lnnz11

    Click 'Retry '.

    Now took care of the issue emagent.

    On the issue of CTX, I can't find anything on this at all!  I looked in the log file and found the following detail:

    INFO: mv /u01/app/oracle/product/11.2.0/bin/ctxlc /u01/app/oracle/product/11.2.0/bin/ctxlcO f

    INFO: mv ctxlc /u01/app/oracle/product/11.2.0/bin/ctxlc

    INFO: chmod 751 /u01/app/oracle/product/11.2.0/bin/ctxlc

    INFO: gcc o ctxhx-m64-L/u01/app/oracle/product/11.2.0/ctx/lib/-L/u01/app/oracle/product/11.2.0/lib/-L/u01/app/oracle/product/11.2.0/lib/stubs/ /u01/app/oracle/product/11.2.0/ctx/lib/ctxhx.o-L/u01/app/oracle/product/11.2.0/ctx/lib/ - lm-lsc_fa-lsc_ex-lsc_da-lsc_ca - lz - lctxhx-Wl,-rpath,/u01/app/oracle/product/11.2.0/ctx/lib-lsnls11-lnls11-lcore11-lsnls11-lnls11-lcore11-lsnls11-lnls11-lxml11-lcore11-lunls11-lsnls11-lnls11-lcore11-lnls11 ' cat / u01/app/oracle/product/11.2.0/lib/sysliblist

    INFO: '

    INFO: /lib64/libstdc++.so.5: refers to 'memcpy@GLIBC_2.14' the undefined

    collect2: error: ld returned 1 exit status

    NEWS: make: * [ctxhx] error 1

    INFO: End of the generated process exit.

    INFO: ----------------------------------

    INFO: Exception thrown from action: do

    Exception name: MakefileException

    Exception string: error in invoking target 'install' of makefile ' / u01/app/oracle/product/11.2.0/ctx/lib/ins_ctx.mk'. See ' / u01/app/oraInventory/logs/installActions2014-11-28_12-45-46PM.log' for details.

    The exception severity: 1

    It seems to be hung on the reference to "memcpy@GLIBC_2.14".  I found a few web references on this, but I don't think that they apply given that sites speak other Linux distributions.

    What bothers me the most about it is that I use everything which is Oracle (except VMPlayer), but I get errors that I don't think that should be the case because there is nothing else than the Oracle!

    Is there something I can add to the command 'gcc' or the make file that will get this work?

    BTW: I think that I will not use CTX with my DB, then will I get in trouble if I create a database with this error CTX?

    Thanks in advance!

    It drives me crazy!

    That's because GR 11, 2 is not certified or supported on Linux 7 (no matter what claim of third-party sites or blog-see the subheading of the blog). Only 12cR2 is http://docs.oracle.com/database/121/LADBN/toc.htm#LADBN101

    So, you can either 12cR2 (1) installation on Linux 7 by following the steps of the official installation guide or (2) downgrade your operating system Linux 5 or 6 of Linux to install 11 GR 2 (Linux 6 requires 11.2.0.3 or higher - http://docs.oracle.com/cd/E11882_01/relnotes.112/e23558/toc.htm#CHDFHIEA)

  • Double authentication with Oracle EBS at the APEX problem

    Hello

    I am currently working on a project to integrate with Oracle EBS 12.1.3 4.2.4 APEX. We have completed the recommended white paper Oracle configuration.  I joined at the request of the APEX of a responsibility of BSE, when I click on the page of the APEX of the EBS, it navigates me to the login page of the APEX, and after I entered my credentials is to show the "No data found" error on the page. Then when I click the OK button again once he navigates me to the login page of the APEX and is validate my login information, allowing me to enter the APEX successfullly.

    It's really us boring for double login controls. Appreciate your help with this problem as soon as possible.

    Deployment environment

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

    Database: Oracle 11g (11.2.0.2)

    Version APEX: APEX 4.2.4

    Oracle EBS Version: R12.1.3

    Application servers: Apache TomCat 7.0.56 (for APEX), Oracle HTTP Server (EBS)

    Web listening port: Oracle REST Data Services (2.0.6)

    Authentication: Custom authentication (login page validates users EBS)

    Thank you

    Sudhakar

    It seems that the constructed URL is not allowed. We EBS do not build a valid string. You can see where he puts "CallFromForm" and then adds "& p =...". "URL.

    The white paper mentions a required patch, you need else to resolve this problem.

    Use the gateway FND. If you do not need to pass parameters through your form to Apex, Oracle now provides a GWY.jsp which allows you to launch the Apex. Install the patches of R12 12316083 and 12726556. Then use the GWY.jsp based on your shape as described in the white paper "Extending Oracle E-Business Suite Release 12 using Oracle Application Express".

    Patch 12316083 is mentioned in the white paper, you are missing the 12726556.

    Description

    This bug solves the problem of pitcher APEX, at the launch of a whole page of APEX

    Oracle E - Business Suite forms according to the user interface. An additional url

    parameter 'CallFromForm' used to be added to the URL of the APEX, which was originally

    APEX page to fail.

  • apex 4.0 with oracle 11g ee mail

    Hello

    I spent when you work with apex 3 I could work with apex mailsend very nice.
    Apex 4.0 with oracle 11g ee, I'm not able to send emails any more.

    Last error message in the queue is:

    ORA-29279: permanent SMTP error: 550 via this server without authentication.
    the smtp server has not been changed, the code is very well

    How can I go further?

    Thank you very much
    Florin

    Florin,

    Make sure that you use the relevent to instructions for your version.
    If you use 4.0 - you probably want the same script - with use of APEX_040000 appropriate.

    See the steps of INSTALLATION of document ITEM.

    http://docs.Oracle.com/CD/E17556_01/doc/install.40/e15513/otn_install.htm#CBHBABCC

    -Make sure that you don't drop the former users of apex framework before update or remove them from the ACL. It can cause you problems.

    -Tim St.

    P.S. Take a minute to update your profile so that your name is clear.

    Published by: Tim St. H., December 11, 2012 16:54

  • OBIEE 10.1 with Oracle 11g

    10 OBIEE can work with Oracle 11 g?

    I installed OBIEE 10 g on my laptop (window Home premium Vista)

    I then installed Oracle database 11g (desktop version)

    When I tried to import the database into the administrator create a repository, I provided the connection string for oracle 11g, but it gave me following error

    Failed to load c:\OracleBI\Server\bin\nqsdbgatewayoci10g.dll dll. Check if the database Oracle 10 g client is installed.

    Edited by: 967447 November 30, 2012 07:12

    Try to reinstall or install the Oracle client with advanced features. That solved your problem.

    OR
    1.uninstall/remove the previous 64 Bit JDK, 64-bit Oracle Client and OBIEE
    2. download and install the 32 Bit JDK and the 32 Bit Oracle 11 G client
    3 reinstall OBIEE OTM Administrator Guide

    Appreciate if you mark as correct

  • Oracle 11g RAC can support 2 separate databases?

    1. can you Oracle 11 g RAC support 2 separate databases because it requires to SCAN ip cluster with a port number unique listener?
    2. Oracle 11.2 database connections will work correctly if I install a mandatory DNS server in Oracle RAC servers?
    I'm leading a team for a project of 11g and appreciate the answers.
    Thank you
    Satish.

    Oracle 11g RAC will support the 2 separate databases because it requires to SCAN ip cluster with a port number unique listener?

    YES

    Oracle 11.2 database connections will work correctly if I install a mandatory DNS server in Oracle RAC servers?

    YES

Maybe you are looking for