Error ORA-00979 when you run the SQL in Oracle 11.2.0.3

Hi Oracle Experts,


I am trying to execute a SQL statement which consist of 2-3 levels of inline queries. Part of this SQL statement is as below:
SELECT
      "SAMPLE_RESULT"."PROPERTYID",
      "SAMPLE_RESULT"."QUALIFIER",
      ROUND(AVG(SAMPLE_RESULT.RESULT),2) avg_result,
      AVG(DECODE(SAMPLE.QUALITYSTATUS, 'P', 1,'F', 5)) qltystatus,
      TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy') sampledt,
      TO_CHAR("SAMPLE"."SAMPLEDT",'rrrr-mm-dd') sortdate
      STD.stdev,
      getCL.cl
    FROM
      (
        SELECT
          ROUND(stddev(INS.avg_result),2) stdev
        FROM
          (
            SELECT
              "SAMPLE_RESULT"."PROPERTYID",
              "SAMPLE_RESULT"."QUALIFIER",
              ROUND(AVG(SAMPLE_RESULT.RESULT),2) avg_result,
              AVG(DECODE(SAMPLE.QUALITYSTATUS, 'P', 1,'F', 5)) qltystatus,
              TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy') sampledt
            FROM
              "SAMPLE",
              "SAMPLE_RESULT",
              "ACTIVITY"
            WHERE
              (
                "SAMPLE"."SAMPLEID" = "SAMPLE_RESULT"."SAMPLEID"
              )
            AND
              (
                "SAMPLE_RESULT"."TESTINSTANCE" = fn_max_instance (
                sample.sampleid, sample_result.testid, sample_result.propertyid
                )
              )
            AND
              (
                "SAMPLE"."ACTIVITYID" = "ACTIVITY"."ACTIVITYID"
              )
            AND
              (
                ACTIVITY.VARIANTID IN ('Sales Gas','Contaminants End')
              )
            AND
              (
                ACTIVITY.LOCATIONID = 'S-5003C'
              )
            AND
              (
                SAMPLE.EVENTID <> 'AD-HOC'
              )
            AND
              (
                "SAMPLE"."SAMPLESTATUS" = 'L'
              )
            AND
              (
                TO_DATE(TO_CHAR(SAMPLE.SAMPLEDT,'dd-mon-yyyy')) BETWEEN TO_DATE
                (TO_CHAR(:StartDate,'dd-Mon-RRRR')) AND TO_DATE(TO_CHAR(
                :StartDate,'dd-Mon-RRRR')) + 6
              )
            AND
              (
                SAMPLE_RESULT.PROPERTYID = 'GCV'
              )
            GROUP BY
              SAMPLE_RESULT.PROPERTYID,
              SAMPLE_RESULT.QUALIFIER,
              TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy')
          )
          INS
      )
      STD,
      (
        SELECT
          ROUND(AVG(INS.avg_result),2) cl
        FROM
          (
           SELECT
              "SAMPLE_RESULT"."PROPERTYID",
              "SAMPLE_RESULT"."QUALIFIER",
              ROUND(AVG(SAMPLE_RESULT.RESULT),2) avg_result,
              AVG(DECODE(SAMPLE.QUALITYSTATUS, 'P', 1,'F', 5)) qltystatus,
              TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy') sampledt
            FROM
             "SAMPLE",
              "SAMPLE_RESULT",
              "ACTIVITY"
            WHERE
              (
                "SAMPLE"."SAMPLEID" = "SAMPLE_RESULT"."SAMPLEID"
              )
            AND
              (
                "SAMPLE_RESULT"."TESTINSTANCE" = fn_max_instance (
                sample.sampleid, sample_result.testid, sample_result.propertyid
                )
              )
            AND
              (
                "SAMPLE"."ACTIVITYID" = "ACTIVITY"."ACTIVITYID"
              )
            AND
              (
                ACTIVITY.VARIANTID IN ('Sales Gas','Contaminants End')
              )
            AND
              (
                ACTIVITY.LOCATIONID = 'S-5003C'
              )
            AND
              (
                SAMPLE.EVENTID <> 'AD-HOC'
              )
            AND
              (
                "SAMPLE"."SAMPLESTATUS" = 'L'
              )
            AND
              (
                TO_DATE(TO_CHAR(SAMPLE.SAMPLEDT,'dd-mon-yyyy')) BETWEEN TO_DATE
                (TO_CHAR(:StartDate,'dd-Mon-RRRR')) AND TO_DATE(TO_CHAR(
                :StartDate,'dd-Mon-RRRR')) + 6
              )
            AND
              (
                SAMPLE_RESULT.PROPERTYID = 'GCV'
              )
            GROUP BY
              SAMPLE_RESULT.PROPERTYID,
              SAMPLE_RESULT.QUALIFIER,
              TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy')
          )
          INS

      )
      getCL,
      "SAMPLE",
      "SAMPLE_RESULT",
      "ACTIVITY"
    WHERE
      (
        "SAMPLE"."SAMPLEID" = "SAMPLE_RESULT"."SAMPLEID"
      )
    AND
      (
        "SAMPLE_RESULT"."TESTINSTANCE" = fn_max_instance (sample.sampleid,
        sample_result.testid, sample_result.propertyid)
      )
    AND
      (
        "SAMPLE"."ACTIVITYID" = "ACTIVITY"."ACTIVITYID"
      )
    AND
      (
        ACTIVITY.VARIANTID IN ('Sales Gas','Contaminants End')
      )
    AND
      (
        ACTIVITY.LOCATIONID = 'S-5003C'
      )
    AND
      (
        SAMPLE_RESULT.PROPERTYID IN ('GCV','SG','T. Sulphur','Dew Point',
        'HC Dew Pts')
      )    
    AND
      (
       TO_DATE(TO_CHAR(SAMPLE.SAMPLEDT,'dd-mon-yyyy')) BETWEEN TO_DATE(TO_CHAR
        (:StartDate,'dd-Mon-RRRR')) AND TO_DATE(TO_CHAR(:StartDate,
        'dd-Mon-RRRR')) + 6
      )
    GROUP BY "SAMPLE_RESULT"."PROPERTYID", "SAMPLE_RESULT"."QUALIFIER", TO_CHAR("SAMPLE"."SAMPLEDT",'dd-Mon-yyyy'), TO_CHAR("SAMPLE"."SAMPLEDT",'rrrr-mm-dd'),
    
      STD.stdev,
      getCL.cl
  )
When I run the level the lowest and second lowest level inline queries statements, which consists of a select field of data and functions, there is no error and capable of generating the result.

But when I run the statement which refer to the alias of queries inline (STD, getCL), it prompted an error ORA-00979 not a group by expression. This happened only Oracle 11.2.0.3. If I run the statement in another version of Oracle (11 GR 1 material and below), I am able to generate the result.

Please advice how can I fix this problem.

Published by: xysOra on 29 April 2013 19:37

It seems that this should be the "SAMPLE" TO_CHAR conversions "" SAMPLEDT ".

You seem to be willing to cut the time part of SAMPLEDT. The best way to do so is TRUNC (SAMPLEDT).

In each of the groups of clauses, replace TO_CHAR ('SAMPLE'. ("' SAMPLEDT ', 'dd-Mon-yyyy') with TRUNC ('SAMPLE'. (' "SAMPLEDT") and completely remove the TO_CHAR ('SAMPLE'. ("' SAMPLEDT ',"dd-mm-rrrr") in the last group of.

Replace in selection lists, TO_CHAR ('SAMPLE'. ("' SAMPLEDT ', 'dd-Mon-yyyy') with TO_CHAR (TRUNC ('SAMPLE'. ((' ' SAMPLEDT '), 'dd-Mon-yyyy') and replace TO_CHAR ("SAMPLE". "SAMPLEDT", "dd-mm-rrrr") with TO_CHAR (TRUNC ("SAMPLE" ".")) " "" "SAMPLEDT"), "dd-mm-rrrr").

These changes can take you the ORA-00979 not one group by expression.

Also the date manipulation is wrong — you do implicit conversions to date using default formats, when what you seem to want is to truncate the time part. Instead of

 TO_DATE(TO_CHAR(SAMPLE.SAMPLEDT,'dd-mon-yyyy')) BETWEEN TO_DATE(TO_CHAR
        (:StartDate,'dd-Mon-RRRR')) AND TO_DATE(TO_CHAR(:StartDate,
        'dd-Mon-RRRR')) + 6

use

 TRUNC(SAMPLE.SAMPLEDT) BETWEEN TRUNC(:StartDate) AND TRUNC(:StartDate) + 6

I hope this helps.
David

Tags: Database

Similar Questions

  • ORA-00942 when you run the application after import

    APEX 4.1.1

    Hello

    I transferred my request via import/export to our production database. I had no errors during installation, but when I run the application, I get the following error message.
    User not found
    ORA-00942: table or view does not exist
    
    Technical Info (only visible for developers)
    
        is_internal_error: true
        ora_sqlcode: -942
        ora_sqlerrm: ORA-00942: table or view does not exist
        component.type: APEX_APPLICATION_COMPUTATIONS
        component.id: 3102806535980644
        component.name: LANG
        error_backtrace:
    
        ORA-06512: at "SYS.DBMS_SYS_SQL", line 1325
        ORA-06512: at "SYS.WWV_DBMS_SQL", line 1287
        ORA-06512: at "SYS.WWV_DBMS_SQL", line 1358
        ORA-06512: at "SYS.WWV_DBMS_SQL", line 1375
        ORA-06512: at "APEX_040100.WWV_FLOW_DYNAMIC_EXEC", line 776
        ORA-06512: at "APEX_040100.WWV_FLOW", line 4155
    I don't know, where to look for the error. I do not have an application element with the name of LANG and there is a calculation application for LANG:
    SELECT  LANG_CODE
    FROM    GPS_WEB_USERS
    WHERE user_name = upper('&APP_USER.')
    All advice where to look?

    Published by: Anne-Marie Rosa on August 16, 2012 05:37

    Published by: Anne-Marie Rosa 16 August 2012 06:32

    Hello
    >
    I transferred my request via import/export to our production database. I had no errors during installation, but when I run the application, I get the following error message.

    User not found
    ORA-00942: table or view does not exist
    
    Technical Info (only visible for developers)
    
    is_internal_error: true
    ora_sqlcode: -942
    ora_sqlerrm: ORA-00942: table or view does not exist
    component.type: APEX_APPLICATION_COMPUTATIONS
    component.id: 3102806535980644
    component.name: LANG
    error_backtrace:
    
    ORA-06512: at "SYS.DBMS_SYS_SQL", line 1325
    ORA-06512: at "SYS.WWV_DBMS_SQL", line 1287
    ORA-06512: at "SYS.WWV_DBMS_SQL", line 1358
    ORA-06512: at "SYS.WWV_DBMS_SQL", line 1375
    ORA-06512: at "APEX_040100.WWV_FLOW_DYNAMIC_EXEC", line 776
    ORA-06512: at "APEX_040100.WWV_FLOW", line 4155
    

    I don't know, where to look for the error. I do not have an application element with the name of LANG and there is a calculation application for LANG:

    SELECT LANG_CODE
    FROM GPS_WEB_USERS
    WHERE user_name = upper('&APP_USER.')
    

    The source of the error is ora_sqlerrm: ORA-00942: table or view does not exist

    Search for the name of the calculation Application in APEX_APPLICATION_COMPUTATIONS APEX view using component.id: 3102806535980644 to find his name.

    Once you have the name, you can change this App mockup and understand what Table/view is not available.

    See you soon,.

    PS: {code} is the tag, which is tiny.

    Published by: Dominique 16 August 2012 18:01

  • HELP: error code 800b0100 when you run the KB981332 update

    I am bang of ideas on it - have been trawling the foums, connected issues with HP and MS and all without success so far. Other updates seem to run OK.

    I have fairly new CPQ Presario notebook with factory version Windows 7 Home Premium 64 - bit preset with the trial versions of Norton Internet security and online backup. I deleted the backup utility and modernized purchased NIS 2010 edition.

    Latest updates installed successfully are KB971468, KB972270, KB974431 (35 listed) etc.

    As I don't have an OEM CD or DVD as a set of HP Recovery DVD. I seem to have only 1 option, or so say MS supports, namely restoring in the construction of the plant and start over. Needless to say, I don't want to do that.

    I tried a lot of things probably too many to mention including CFS, deleting the SoftwareDsitribution files. removal of NOrton (removal tool) etc. Am desperate for more help - surely to goodness it is possible to fix this without wiping everything.

    Contents of log files ON:

    Preparation of control system was updated.
    Binary version 6.1.7600.20667
    Package, Version 8.0
    2010-05-14 15:00

    Checking Windows Service Packages

    Checking of manifests package and catalogs
    (f) CBS MUM corrupt 0x800F0900 servicing\Packages\Package_2_for_KB981332~31bf3856ad364e35~amd64~~6.1.1.0.mum line 1:
    (f) CBS catalogue Corrupt 0x800B0100 servicing\Packages\Package_2_for_KB981332~31bf3856ad364e35~amd64~~6.1.1.0.cat
    (f) CBS MUM corrupt 0x800F0900 servicing\Packages\Package_for_KB981332_RTM~31bf3856ad364e35~amd64~~6.1.1.0.mum line 1:
    (f) CBS catalogue Corrupt 0x800B0100 servicing\Packages\Package_for_KB981332_RTM~31bf3856ad364e35~amd64~~6.1.1.0.cat
    (f) CBS MUM corrupt 0x800F0900 servicing\Packages\Package_for_KB981332~31bf3856ad364e35~amd64~~6.1.1.0.mum line 1:
    (f) CBS catalogue Corrupt 0x800B0100 servicing\Packages\Package_for_KB981332~31bf3856ad364e35~amd64~~6.1.1.0.cat

    Checking package Watchlist

    Watchlist checking

    Checking packages

    Control components store
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_6.1.7600.20662_none_a4eb348760a82021.manifest amd64_microsoft-windows-writing of scripts - vbscript_31bf3856ad364e35_6.1.7600.20662_none_a4eb348760a82021
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\wow64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_6.1.7600.20662_none_af3fded99508e21c.manifest wow64_microsoft-windows-writing of scripts - vbscript_31bf3856ad364e35_6.1.7600.20662_none_af3fded99508e21c
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\amd64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_6.1.7600.16546_none_a47b38bc4776add1.manifest amd64_microsoft-windows-writing of scripts - vbscript_31bf3856ad364e35_6.1.7600.16546_none_a47b38bc4776add1
    (f) CSI shows all zeros 0 x 00000000 winsxs\Manifests\wow64_microsoft-windows-scripting-vbscript_31bf3856ad364e35_6.1.7600.16546_none_aecfe30e7bd76fcc.manifest wow64_microsoft-windows-writing of scripts - vbscript_31bf3856ad364e35_6.1.7600.16546_none_aecfe30e7bd76fcc

    Summary:
    Seconds executed: 456
    Find 10 errors
    CSI shows all zeros Total count: 4
    CBS MUM corrupt count: 3
    Total corrupt CBS catalog number: 3

    Unavailable repair files:
    winsxs\manifests\amd64_microsoft-Windows-Scripting-vbscript_31bf3856ad364e35_6.1.7600.20662_none_a4eb348760a82021.manifest
    winsxs\manifests\wow64_microsoft-Windows-Scripting-vbscript_31bf3856ad364e35_6.1.7600.20662_none_af3fded99508e21c.manifest
    winsxs\manifests\amd64_microsoft-Windows-Scripting-vbscript_31bf3856ad364e35_6.1.7600.16546_none_a47b38bc4776add1.manifest
    winsxs\manifests\wow64_microsoft-Windows-Scripting-vbscript_31bf3856ad364e35_6.1.7600.16546_none_aecfe30e7bd76fcc.manifest
    servicing\packages\Package_2_for_KB981332~31bf3856ad364e35~AMD64~~6.1.1.0.mum
    servicing\packages\Package_2_for_KB981332~31bf3856ad364e35~AMD64~~6.1.1.0.mum
    servicing\packages\Package_for_KB981332_RTM~31bf3856ad364e35~AMD64~~6.1.1.0.mum
    servicing\packages\Package_for_KB981332_RTM~31bf3856ad364e35~AMD64~~6.1.1.0.mum
    servicing\packages\Package_for_KB981332~31bf3856ad364e35~AMD64~~6.1.1.0.mum
    servicing\packages\Package_for_KB981332~31bf3856ad364e35~AMD64~~6.1.1.0.mum
    servicing\packages\Package_2_for_KB981332~31bf3856ad364e35~AMD64~~6.1.1.0.cat
    servicing\packages\Package_2_for_KB981332~31bf3856ad364e35~AMD64~~6.1.1.0.cat
    servicing\packages\Package_for_KB981332_RTM~31bf3856ad364e35~AMD64~~6.1.1.0.cat
    servicing\packages\Package_for_KB981332_RTM~31bf3856ad364e35~AMD64~~6.1.1.0.cat
    servicing\packages\Package_for_KB981332~31bf3856ad364e35~AMD64~~6.1.1.0.cat
    servicing\packages\Package_for_KB981332~31bf3856ad364e35~AMD64~~6.1.1.0.cat
    Operating system: Windows 7

    technical skills: intermediate
    First name: John
    First name: Bury
    Phone: 02380780446
    E-mail: * e-mail address is removed from the privacy *.

    Initially I just installed the NIS bought without removing the trial.

    During the period 60-day trial free NIS already expired by the time where you have installed the version purchased NIS? [Yes/No]

    The foregoing despite...

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
        http://support.Microsoft.com/kb/929135

    I suspect that one or more protections in real-time of NIS may interfere with installation ofKB981322. Contact the Norton Support for assistance or see if KB981322 will install after a "clean boot" by KB929135.

    In turn, and if you have no material yourself did use following specific support security update...

    Visit the Microsoft Solution Center and antivirus security for resources and tools to keep your PC safe and healthy. If you have problems with the installation of the update itself, visit the Microsoft Update Support for resources and tools to keep your PC updated with the latest updates.

    Or you can...

    Start a free Windows Update support incident email request:
    https://support.Microsoft.com/OAS/default.aspx?Gprid=6527

    Buying to meet problems installing Microsoft security updates also can visit the following page for assistance:https://consumersecuritysupport.microsoft.com/

    For more information about how to contact your local Microsoft subsidiary for security update support issues, visit the International Support Web site:http://support.microsoft.com/common/international.aspx

    For enterprise customers, support for security updates is available through your usual support contacts.

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Re: "insufficient privileges" error when you run the Java stored procedure in another schema

    I get an "insufficient privileges" error when you run the Java stored procedure in another schema, see details below.  I don't know what are missing privileges (I already granted the EXECUTE privilege), suggestions?  -Thank you.

    Define a simple java class and deploy it as a Java stored procedure to test:


    Schema: User1

    test of the package;

    public class HelloWorld {}

    public HelloWorld() {

    Super();

    }

    public static String Hello () {}

    Return "HELLO";

    }

    }

    CREATE or REPLACE FUNCTION HELLO RETURN VARCHAR2 AUTHID CURRENT_USER AS LANGUAGE JAVA NAME ' test. HelloWorld.hello () return java.lang.String';

    Grant execute on USER2 HELLO

    Test the Java stored procedure through the PL/SQL function call (in the same schema):


    Schema: User1

    SET SERVEROUTPUT ON

    DECLARE

    v_Return VARCHAR2 (200);

    BEGIN

    v_Return: = User1. HELLO;

    DBMS_OUTPUT. Put_line ('v_Return =' | v_Return);

    END;

    anonymous block filled

    v_Return = HELLO

    Test the Java stored procedure through the PL/SQL function call in a different pattern:


    Schema: USER2

    SET SERVEROUTPUT ON

    DECLARE

    v_Return VARCHAR2 (200);

    BEGIN

    v_Return: = User1. HELLO;

    DBMS_OUTPUT. Put_line ('v_Return =' | v_Return);

    END;

    Error report-

    ORA-01031: insufficient privileges

    ORA-06512: at "User1." HELLO', line 1

    ORA-06512: at line 4 level

    01031 00000 - "insufficient privileges".

    * Cause: An attempt was made to change the user name or password

    without the privilege appropriate. This error also occurs if

    trying to install a database without the need for employment

    access privileges.

    When Trusted Oracle is configure in DBMS MAC, this error may occur

    If the user has been granted the privilege necessary for a higher label

    that the connection is active.

    * Action: Ask the database to perform the operation or grant administrator

    the required privileges.

    For users Trusted Oracle get this error, well that granted the

    the privilege that is suitable for the top label, ask the database

    administrator to grant the privilege to the appropriate label.

    You have created the function with AUTHID CURRENT_USER, which means that the function is executed with the rights of the applicant (but not with the rights of the author). This means that the applicant must have grants (directly or through roles) on all used/accessible objects in the service. In your case the user USER2 has not granted with EXECUTE on the class/source Java test. Class HelloWorld, causing the ORA-01031 exception. You create service without AUTHID CURRENT_USER (i.e. with AUTHID DEFINE, which is by default, if you do not have a specific reason to use AUTHID CURRENT_USER) or grant EXECUTE on JAVA test SOURCE. Class HelloWorld to User2.

    Dimitar

  • R12.2.5 Installation on OL 7.1 ERROR: RW-50010: error:-script returned an error: 1 RW-50004: error code when you run the external process.  Check the log file for more details

    I tried to install EBS 12.2.5 on OL 7.1 with rapidwiz and got this error when applying the unique patches in second File System

    "Second system logfile file - /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/logs/12021641.log.

    LOG FILE:

    _____________________________________________________________________________________________________________________________

    Step 0-8

    Command: /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/adrunfmw.sh

    Step 4 of 8: UNIX making pretreatment

    Running: chmod 777/db/oracle/OraInventory r

    chmod-r 777/db/oracle/OraInventory succeeded

    Step 4 of 8

    Performance: known appltest - c "/ app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/adrunfmw.sh".

    PHASE of INSTALLATION has BEGUN: APPS TECH STACK: Wed Dec 2 17:27:07 IST 2015

    runProcess_1

    StatusString installation of Applications Technology Stack

    Copy the temp area models

    Inventory name is: app_oracle_TEST_fs2_Oracle_EBS_app

    One-time fixes copy to temp area

    Remove JDK_TOP: / app/oracle/TEST/fs2/EBSapps/comn/util/jdk32 if there is

    / App/oracle/TEST/fs2/EBSapps/comn/util/jdk32 deleted directory

    Installation of WebLogic Server.

    With the help of /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWLS.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWLS.xml oracle.apps.fnd.txk.config.InstallService

    WebLogic Server successfully installed

    Web Tier utility installation.

    With the help of /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWeb.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWeb.xml oracle.apps.fnd.txk.config.InstallService

    Level successfully installed Web utilities

    Registration EBSUsing /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instEBS.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instEBS.xml oracle.apps.fnd.txk.config.InstallService

    EBS registered successfully

    Rename/home/appltest/bea/beahomelist in /home/appltest/bea/beahomelist.29266 to avoid problems during WLS

    patching

    / Home/appltest/Bea/beahomelist renamed successfully.

    Application of ad hoc patches

    With the help of /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instASpatches.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instASpatches.xml oracle.apps.fnd.txk.config.InstallService

    Fatal error: T2K install Service

    oracle.apps.fnd.txk.config.ProcessStateException: OPatch process failed: Output = 1 see log for more details. CMD = perl /app/oracle/TEST/fs2/FMW_Home/webtier/OPatch/opatch.pl apply - verbose - silent - ocmrf /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd/admin/template/txkForms_ocm.rsp jdk - / app/oracle/TEST/fs2/FMW_Home/webtier/jdk/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/patches/7695070/7695070

    at oracle.apps.fnd.txk.config.OPatchActionNode.processState(OPatchActionNode.java:312)

    at oracle.apps.fnd.txk.config.PatchActionNode.processState(PatchActionNode.java:187)

    at oracle.apps.fnd.txk.config.PatchNode.processState(PatchNode.java:338)

    at oracle.apps.fnd.txk.config.PatchesNode.processState(PatchesNode.java:79)

    at oracle.apps.fnd.txk.config.InstallNode.processState(InstallNode.java:68)

    at oracle.apps.fnd.txk.config.TXKTopology.traverse(TXKTopology.java:594)

    at oracle.apps.fnd.txk.config.InstallService.doInvoke(InstallService.java:224)

    at oracle.apps.fnd.txk.config.InstallService.invoke(InstallService.java:237)

    at oracle.apps.fnd.txk.config.InstallService.main(InstallService.java:291)

    Can not install the unique patches

    RW-50010: error:-script returned an error: 1

    RW-50004: Error Code when you run the external process.  Check the log file for more details.


    It was recorded in /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/logs/12021641.log and I don't know how to find another newspaper for such details as mentioned in this journal. Please help me with that.


    Concerning

    KasunA

    Found a workaround.  The problem is that, before the 7695070 patch is applied, the installation program backup directory/apps/fs2/FMW_Home/webtier/jdk in /apps/fs2/FMW_Home/webtier/jdk_backup_existing_version, but then it clears. / jdk - the patch fails because it can't find it.  I had to rename the directory of the jdk for jdk2, and as soon as it gets deleted quickly and rename jdk2 jdk.  Then he applies the patches without problem.  A symbolic link would do the same thing.

  • Error when you run the setEssbaseEnv.sh script

    Hi all

    In the 11.1.2.x version:

    MIDDLEWARE_HOME/EPMSystem11R1/products/Essbase/EssbaseServer/templates/startMaxl.sh

    Scripts call another script, setEssbaseEnv.sh. When you run the script 'setEssbaseEnv.sh' it gives the error below:

    $ sh setEssbaseEnv.sh

    setEssbaseEnv.sh: line 4: close syntax error unexpected token ' (')

    setEssbaseEnv.sh: line 4: "cd $J (EPM_ORACLE_INSTANCE) / bin /".

    Why use only the location of the templates? There should be a bin folder.

    Concerning

    Celvin Kattookaran

  • When you run the Microsoft Security essentails I get the message "the program is blocked by group policy. For more information, contact your system administrator. »

    When you run the Microsoft Security essentails I get the message "the program is blocked by group policy. For more information, contact your system administrator. »

    Original title: microsoft security essentails

    Hi Kim,

    The description of the problem seems a little unclear and I wish I had a better understanding before you start working on it. I appreciate if you could help me with more information.

    1. when exactly you receive this error message?

    2. are you on a computer in the domain?

    3 is the Microsoft Security Essentials-specific issue?

    The error messages say about group policy which is the collection of settings that define the appearance of a system and how it behaves for a defined group of users. Microsoft provides a program with a console (Group Policy Microsoft Management Console). The console allows programmers select a GPO that is linked to the directory of centers for domains, organizational units or sites. GPO provides the programmer with security options, the software installation and maintenance options, scripting options and the folder redirection options.

    Response with more information to help you.

  • Microsoft Pinball Arcade, everything works except the right flipper does not work when you run the game. __Keyboard is very good

    Microsoft Pinball Arcade, everything works except the right flipper does not work when you run the game.
    Keyboard is fine.  Is this a compatibility issue?

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

  • I am still getting error code 8004ff83 when you perform the update

    I am still getting error code 8004ff83 when you perform the update

    I read that in safe mode, it would be possible to do the update. What is safe mode?

    Hello

    Perform the steps from the link below and check if the problem persists.
    Problems with installing updates
     
    Hope this information helps.
  • Vista OS does not load. I tried booting and the load screen bar continues to work without success. When you run the start he stops to c:\windows\system 32\cmd.exe that I don't want to lose my files so I have not reinstalled. Any suggestions?

    Vista OS does not load.  I tried booting and the load screen bar continues to work without success.  When you run the start he stops to c:\windows\system 32\cmd.exe that I don't want to lose my files so I have not reinstalled.  Any suggestions?

    Restore point:

    Try typing F8 at startup and in the list of Boot selections, select Mode safe using ARROW top to go there > and then press ENTER.

    Try a restore of the system once, to choose a Restore Point prior to your problem...

    Click Start > programs > Accessories > system tools > system restore > choose another time > next > etc.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

     

    If restore work not and you do not have a Vista DVD from Microsoft, do a repair disc to do a Startup Repair:

    Download the ISO on the link provided and make a record of repair time it starts.

    Go to your Bios/Setup, or the Boot Menu at startup and change the Boot order to make the DVD/CD drive 1st in the boot order, then reboot with the disk in the drive.

    At the startup/power on you should see at the bottom of the screen either F2 or DELETE, go to Setup/Bios or F12 for the Boot Menu.

    When you have changed that, insert the Bootable disk you did in the drive and reboot.

    http://www.bleepingcomputer.com/tutorials/tutorial148.html

    Link above shows what the process looks like and a manual, it load the repair options.

    NeoSmart containing the content of the Windows Vista DVD 'Recovery Centre', as we refer to him. It cannot be used to install or reinstall Windows Vista, and is just a Windows PE interface to recovering your PC. Technically, we could re-create this installation with downloadable media media freely from Microsoft (namely the Microsoft WAIK, several gigabyte download); but it is pretty darn decent of Microsoft to present Windows users who might not be able to create such a thing on their own.

    Read all the info on the website on how to create and use it.

    http://NeoSmart.net/blog/2008/Windows-Vista-recovery-disc-download/

    ISO Burner: http://www.snapfiles.com/get/active-isoburner.html

    It's a very good Vista startup repair disk.

    You can do a system restart tool, system, etc it restore.

    It is NOT a disc of resettlement.

    And the 32-bit is what normally comes on a computer, unless 64-bit.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    Data recovery, if/before you reinstall:

    1. slave of your hard drive in another computer and read/save your data out there.

    2. put your Hard drive in a USB hard drive case, plug it into another computer and read/save from there.

    3 Alternatively, use Knoppix Live CD to recover data:

    http://www.Knopper.NET/Knoppix/index-en.html

    Download/save the file Knoppix Live CD ISO above.

    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    http://isorecorder.alexfeinman.com/isorecorder.htm

    Download the Vista software from the link above.

    After installing above ISO burning software, right click on the Knoppix ISO file > copy the Image to a CD.

    Knoppix is not installed on your PC; use only the resources of your PC, RAM, graphics etc.

    Change the boot order in YOUR computer/laptop to the CD/DVD Drive 1st in the boot order.

    Plug a Flash Drive/Memory Stick, BOOT with the Live CD, and you should be able to read the hard drive.

    When the desktop loads, you will see at least two drive hard icons on the desktop (one for your hard drive) and one for the USB key.

    Click on the icons of hard drive to open and to understand which drive is which.

    Click the icon for the USB drive and click on "Actions > Change the read/write mode" so you can write to disk (it is read-only by default for security reasons).

    Now to find the files you want to back up, just drag and drop them on the USB. When you're done, shut down the system and remove the USB key.

    See you soon.

    Mick Murphy - Microsoft partner

  • How do you prevent Muse to install when you run the exceptiondeployer

    How do you prevent Muse to install when you run the exceptiondeployer

    Hi Richard,

    You can select no Muse when creating a package.

    In addition, the Muse is therefore more a part of the Exceptions folder. It is only installed through the build configuration.

    Release notes | Adobe Muse CC

    Kind regards

    Sheena

  • Exception when you run the application deployed standalone WLS

    When you run the application deployed in a standalone WLS, I get the following exception, and nothing will be displayed in the Explorer. Running-in of jdev/integratedWebLogicServer is however very well. I deployed the application in jdev to the autonomous WLS.
    ]] Root cause of ServletException.
    javax.faces.FacesException: oracle.adf.controller.ControllerException: ADFC-10001: cannot instantiate class 'com.oracle.pm.eai.supporttool.ui.bean.SupportToolBean'
         at oracle.adfinternal.controller.util.Utils.createAndLogFacesException(Utils.java:192)
         at oracle.adfinternal.controller.beans.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:180)
         at oracle.adfinternal.controller.beans.ManagedBeanFactory.instantiateBean(ManagedBeanFactory.java:860)
         at oracle.adfinternal.controller.application.ManagedBeanELResolver.getValue(ManagedBeanELResolver.java:112)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:72)
         at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:68)
         at com.sun.el.parser.AstValue.getValue(AstValue.java:107)
         at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
         at com.sun.faces.application.ApplicationImpl.createComponent(ApplicationImpl.java:251)
         at javax.faces.webapp.UIComponentELTag.createComponent(UIComponentELTag.java:222)
         at javax.faces.webapp.UIComponentClassicTagBase.createChild(UIComponentClassicTagBase.java:486)
         at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:670)
    Here are the versions WLS and Jdeveloper, I used.
    WebLogic 10.3.3.0
    JDeveloper 11.1.1.3.0

    Hello

    It seems that there is something wrong with your support of bean is instantiated.
    Check that it is correctly stated in the taskFlow and you have a default constructor in your backing bean.

    Gabriel.

  • How to change the icon of the browser when you run the application

    Hi guys,.

    How can I change the icon of the browser when you run the application. That is to say the icon that the browser displays when we surf on this forum is a red square.

    I typed the following text in the page template, but nothing happened
    < link rel = "icon" herf = "" #IMAGE_PREFIX #erp.png "type =" image/png">
    " I hope that my question is simple,


    Kind regards
    Fateh

    Published by: Fateh June 30, 2011 03:36

    See + {message identifier: = 9591426} +.

    
    

    2 things: it is href not herf; and the only image file format with complete cross-browser ICOsupport.

  • ORA-00900 when you use the command COPY with dynamic SQL

    Helllo,
    I created the following procedure:

    create or replace procedure copyTable (pSourceTableOwner IN varchar2
    pSourceTableOwnerPasword IN varchar2
    pTargetTableOwner IN varchar2
    pTableName IN varchar2
    pDatabaseLink IN varchar2)
    as

    vStatement varchar2 (250): = null;

    Start

    vStatement: = "copy of". pSourceTableOwner | '/' || pSourceTableOwnerPasword | '@' || pDatabaseLink |
    "Insert" | pTargetTableOwner | '.' || pTableName | ' using select * from '. pTableName;

    immediately run vStatement;

    end;
    /

    The generated command (variable vStatement) looks like this:
    "Insert a copy of O_GLCEN/o_glcen@SELLENTW o_jh. "X_PLZ_CD_MERGED_CTIS using select * from X_PLZ_CD_MERGED_CTIS".

    When you call this procedure as "exec copyTable ('O_GLCEN', 'o_glcen', 'o_jh', 'X_PLZ_CD_MERGED_CTIS', 'SELLENTW');" the following lifts:

    FEHLER in line 1:
    ORA-00900: invalid SQL statement
    ORA-06512: at "SYSTEMTECHNIK". COPYTABLE", line 20
    ORA-06512: at line 1

    But when you call the command COPY directly from SQL prompt the statement runs without error.
    Is in general not possible to use the dynamic COPY with SQL command? If it is possible does anyone has an idea what I am doing wrong?

    Any help will be appreciated...

    Rgds
    JH

    I would like to use something like

    vStatement: = ' start in f (select * from ' | pSourceTableOwner |) '.' || pTableName | '@' || pDatabaseLink | Insert loop ') in ' | pTargetTableOwner | '.' || pTableName | "f-values; end loop; end; »
    immediately run vStatement;

  • PLS-00201 when you run the dbms_compression package

    Hello

    I am collecting estimates compression rates in a 10 g database before upgrading us to 11 g. I downloaded the package compression of DBMS of OTN: http://www.oracle.com/technetwork/database/options/compression/compression-advisor-095705.html

    And this installed in my db 10g:
    SQL > @dbmscomp.sql

    Package created.


    The synonym is created.


    Grant succeeded.

    No errors.
    SQL > @prvtcomp.plb

    Package body created.


    The synonym is created.


    Grant succeeded.

    No errors.

    When I try to run run this package as described in the README file, I get the following error:

    SQL > exec dbms_compression.getratio ('SAPAPO', ' / SAPAPO/MATLOC ', 'OLTP', 10);
    BEGIN dbms_compression.getratio ('SAPAPO', ' / SAPAPO/MATLOC ', 'OLTP', 10); END;

    *
    ERROR on line 1:
    ORA-06550: line 1, column 7:
    PLS-00201: identifier ' DBMS_COMPRESSION. GETRATIO' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored

    Please let me know if anyone has come across this error before.

    Thank you

    The package is called dbms_comp_advisor, not dbms_compression.

Maybe you are looking for

  • Pavilion au0003tx: finding authorized service center in Dresden, Germany

    Hello I bought a laptop from the India and its 1 month. Since a few days I have encountered some problems in my lappy and badly want to visit an authorized hp service center in Dresden, Germany. my keyboard touchpad n are not sensing correctly Please

  • Missing network controller driver

    Good forum! I need help in installing a network controller driver. I can't connect to the internet via wifi, only via an ethernet cable. I can't get a bit of luck it is. Here is the hardware ID PCI\VEN_8086 & DEV_08B3 & SUBSYS_00708086 & REV_83PCI\VE

  • Ask questions about the functionality of EA8500 MU-MIMO

    Dear Linksys I bought EA8500, and it arrived today. I have two questions about the functionality of MU-MIMO of EA8500 AP. 1. I want to compare the performance between SU-MIMO and MU-MIMO, but there is no option to control this feature in the router a

  • Get the 0x8078012D error code when executing backup

    Original title: Windows backup fails, i/o device error ERROR: Backup Windows: Troubleshooting Options Check your backup The operation failed because of a device error encountered with the source or the destination. If the volume of the source or the

  • Shortcuts of the blackBerry Smartphones customization on the homescreen on the 8230?

    I just got a new Pearl flip 8230 a few days ago. Love it, but one thing bothers me a bit. On the home/main screen, with 5 shortcuts at the bottom, I can't find a way to customize them. My old cheap gift flip previously had this ability, so you can't