Oracle EBS 12.1.3 models, concatenation of files takes too long

Hi guys
I installed Oracle VM Server (3.1.1) and VM Manager (3.1.1) and now proceed to the part of concatenate files as mentioned with the 'readme' under download section model.

«Concatinate and extract the .tgz files.» This step creates a directory
with the name of the template that contains all the files for the
model. »


Cat OVM_OL5U6_X86_64_EBIZ12.1.3_APPS_VIS_PVM.tgz.0
------OVM_OL5U6_X86_64_EBIZ12.1.3_APPS_VIS_PVM.tgz.1
------OVM_OL5U6_X86_64_EBIZ12.1.3_APPS_VIS_PVM.tgz.2 | tar - xz

for the application tier. I run this from a terminal (logged as root). As soon as I start this process, I get a pop-up indicating missing fonts (probably because of the command cat attempts to display the content of the files) and application layer concatenate process runs from last several hours. I checked the disk and nothing has yet been written to disk.

My environment: VMWare player = > Oracle linux 6.2 (64-bit) = > VM Manager up and running 3.1.1, VM server hung upwards and both instances (Server VM VM Manager) servers communicate with each other as expected!

Please confirm if this is a normal behavior

Kind regards

REDA

PL try the entire command in a single line without using the continuation marker (\) - like this

cat OVM_OL5U6_X86_64_EBIZ12.1.3_APPS_VIS_PVM.tgz.0 OVM_OL5U6_X86_64_EBIZ12.1.3_APPS_VIS_PVM.tgz.1 OVM_OL5U6_X86_64_EBIZ12.1.3_APPS_VIS_PVM.tgz.2 | tar -xz

HTH
Srini

Tags: Oracle Applications

Similar Questions

  • "ORA - 01489:result of concatenation of string is too long" (the chain is small)

    Hello

    I am using the listagg as follows function but get ORA-01489: result of concatenating string is too long.

    SELECT LOCATIONID, LISTAGG (TO_CHAR (WHICH |)) ',' || (POSITIONY), ',') ADR WITHIN GROUP (ORDER BY SEQUENCENUMBER)
    OF POSITIONPOINTS
    GROUP BY LOCATIONID
    AFTER HAVING COUNT (SEQUENCENUMBER) = 20;

    When I try to run this in Oracle Sql Developer, he shows the lines first in 1550, then reports the error ORA-01489. In total 2612 lines must be returned, all values in ADR having a length of approximately 440 characters. An example of one of the lines that developer Sql is back is:

    22372682 410434.801,551142.885,410434.784,551142.875,410439.801,551141.922,410439.991,551141.795,410439.293,551138.303,410438.531,551137.668,410429.768,551134.302,410427.228,551133.159,410426.212,551132.143,410425.196,551129.667,410421.957,551114.3,410414.972,551081.28,410413.639,551076.136,410412.94,551073.66,410412.94,551072.326,410413.639,551071.628,410415.798,551070.612,410416.369,551069.469,410416.877,551068.834,410433.23,551061.795

    There are a few LocationIDs in table PositionPoints that have more than 20 entries (max is 254), and for these lines, I want the concatenated string more than the maximum of 4000 characters. However, where count (sequencenumber) = 20, the length of the concatenated string would be less than 500. Oracle running concatenations even for places that I've excluded with my HAVING clause and an error on these?

    I tried to run the query at the time Oracle Sql Developer and SQL Plus.

    Would be grateful if someone could shed some light on this issue.

    Thank you

    Ronnie m says:
    Oracle running concatenations even for places that I've excluded with my HAVING clause and an error on these?

    Yes, that's the explanation.
    HAVING is not WHERE it is applied after the grouping is performed.

  • Unexpected error "the result of the concatenation of string is too long."

    Hello

    I use the Oracle 11.2.0 database.

    When querying my database with a common table expression that concatenates strings VARCHAR2, I get an error ORA-01489 even if I suspect that I am concatenating more 4000 characters.

    To be more precise, I have a table entity which basically stores the XML elements, including their parent element and their position of brother among his brothers and sisters. The CREATE statement for this table is listed below.

    CREATE TABLE (entity
    ID NUMBER (10,0) NOT NULL PRIMARY KEY,
    Name VARCHAR2 (100) NOT NULL,
    Parent NUMBER (10,0) REFERENCES Entity (ID),
    Sibling_Pos NUMBER (2.0) DEFAULT 0
    )
    ;

    Now, I would like for all items to be concatenated with their ancestors elements to a structure as follows:

    "(/ root_element(sibling_pos)/.../ancestor_element(sibling_pos)/parent_element(sibling_pos)/current_element(sibling_pos).
    (where root_element, ancestor_element, parent_element and current_element are fair values in the name column of the table of the entity)

    To do this, I use a common table expression that concatenates the values of name and sibling_pos as shown below:

    WITH entity_cte (lvl, id, path) as)
    SELECT 1 AS lvl, id, ' / '. name | ' (0' | sibling_pos |) ')' IN the path
    OF the entity
    WHERE parent IS NULL
    UNION () ALL THE
    SELECT lvl + 1 lvl, e.id, entity_cte.path | '/' || e.Name | ' (': cast (e.sibling_pos AS VARCHAR2 (2)) |) ')' IN the path
    Of entity_cte, e entity
    WHERE entity_cte.id = e.parent
    )
    )
    SELECT lvl, id, path
    Of e entity_cte
    ;

    After the insertion of certain values, I get the error ORA-01489, the result of concatenating string is too long. The maximum is called as 4,000 characters for VARCHAR2 in the oracle documentation and various Web sites. Of course, it is clear to me just by using the common table like that expression, I could run in such an error. However, because of the structure of XML documents, I doubted that channels resulting would be since a long time more than 4000 characters.

    So I reorganized my query to count the characters to concatenate instead of actually concatenate. The query is listed below, that the changes are marked in "BOLD":

    WITH entity_cte (lvl, id, path) as)
    SELECT 1 lvl, id, length ('/ ' | name |)  ' (0' | sibling_pos |) ') IN the path
    OF the entity
    WHERE parent IS NULL
    UNION () ALL THE
    SELECT lvl 1 lvl, e.id, AS entity_cte.path + length ('/ ' | e.name |) ' (': cast (e.sibling_pos AS VARCHAR2 (2)) |) ') IN the path
    Of entity_cte, e entity
    WHERE entity_cte.id = e.parent
    )
    )
    SELECT lvl, id, path
    Of e entity_cte
    Way to ORDER BY DESC
    ;

    The result of the query gives me a maximum length of 319 characters.

    To be sure, I also checked the maximum level (indicated by the column named lvl in the common table expression), which means that the maximum number of items in my way (the concatenated string). The result is 18. As I use VARCHAR2 (100) for the name column and add 5 charcaters in each level, the maximum number of characters expected to 18 levels would be 1890.

    So, now I wonder is the ORA-01489 may have triggered another reason? Or is there something else I'm missing?
    Any help would be appreciated. Other suggestions to track down the error are more than welcome. Thanks in advance.

    I found by trial and error that launch the query anchor seems to work, but I don't know why, then you can try this.

    with entity_cte (lvl, id, path)
    as
        (
        select
            1 lvl,
            id,
            cast('/' || name || '(0' || sibling_pos || ')' as varchar2(4000))  path
        from
            entity
        where
            parent is null
        union all
        select
            lvl + 1 lvl,
            e.id,
            entity_cte.path || '/' || e.name || '(' || cast(e.sibling_pos as varchar2(2)) || ')' path
        from
            entity_cte,
            entity e
        where
            entity_cte.id = e.parent
        )
    select lvl, id, path
    from entity_cte e
    ;
    

    Not tested since no table definitions or examples of data provided.

  • How to connect to oracle ebs from external software

    Hello!

    I want to develop an integration for oracle EBS. To this end, I'm looking for ways how to connect at EBS and a repository of functions that can be called from an external program. I'm not sure if this is the right place to ask but I haven't found anything yet so I'll try here.

    Y at - it of standard connectors for provided by Oracle EBS?

    Thank you
    Konrad

    Oracle Applications Architecture is a framework for distributed computing and at several levels that supports Oracle Applications products. In this model, different servers are divided in several levels/levels as follows:

    -The Office of the range--> browser with Jinitiator or Sun JRE
    ---> Web servers, forms, States, Admin and simultaneous Application layer
    -The layer of database--> Oracle Enterprise Edition database

    The Application layer is the layer that is responsible for:

    -The different servers that deal with the business logic of accommodation
    -Manage the communication between the Office of the range and the database layer

    So, to connect to the database, you can access the application layer, or connect directly to the base. I don't think that it is possible to communicate with the application to another application services. Therefore, you must connect directly to the database which can be carried out as explained in my previous answer. There is no such API that can be used to open and close a database connection. Oracle E-Business Suite is just a database with number of patterns and objects that are perfectly integrated.

    More information on Oracle E-Business Architecture found in:

    Concepts of Oracle Applications
    http://download-UK.Oracle.com/docs/CD/B25516_14/current/Acrobat/11iconcepts.PDF

  • application background Oracle EBS/Apps adapter

    version: 12.1.3 (12 c)

    I am using Oracle EBS adapter to call the api of PL/SQL (PO_CHANGE_API1_S.UPDATE_PO) through integration rep.  I referred to the documentation for your card for Oracle Applications Concepts .  I have configured the following properties

    • jca.apps.Username
    • jca.apps.Responsibility
    • jca.apps.ORG_ID
    • jca.apps.RespApplication
    • jca.apps.SecurityGroup

    However, the appeal of the PLSQL API, get the error as

    < UPDATE_PO > 0 < / UPDATE_PO >

    -< X_API_ERRORS >

    -< MESSAGE_NAME >

    < MESSAGE_NAME_ITEM >PO_INVALID_DOC_IDS< / MESSAGE_NAME_ITEM >

    < / MESSAGE_NAME >

    -< MESSAGE_TEXT >

    < MESSAGE_TEXT_ITEM > your ID [Doc Id = & annual] document is invalid or not found. < / MESSAGE_TEXT_ITEM >

    < / MESSAGE_TEXT >

    -< table_name >

    < MESSAGE_NAME_ITEM > PO_HEADERS < / MESSAGE_NAME_ITEM >

    < / TABLE_NAME >

    -< nom_de_colonne >

    < MESSAGE_NAME_ITEM > PO_HEADER_ID < / MESSAGE_NAME_ITEM >

    < / nom_de_colonne >

    -< ENTITY_TYPE >

    < MESSAGE_NAME_ITEM xsi: Nil = "true" / >

    < / ENTITY_TYPE >

    -< ENTITY_ID >

    < ENTITY_ID_ITEM xsi: Nil = "true" / >

    < / ENTITY_ID >

    -< PROCESSING_DATE >

    < PROCESSING_DATE_ITEM > 2016-02-08T 19: 52:06.000 + 05:30 < / PROCESSING_DATE_ITEM >

    < / PROCESSING_DATE >

    -< MESSAGE_TYPE >

    < MESSAGE_TYPE_ITEM xsi: Nil = "true" / >

    < / MESSAGE_TYPE >

    < / X_API_ERRORS >

    Am I missing something here?

    Rgds

    Sen

    I resolved to myself. To restart the server solved the problem.

  • Oracle EBS 12.1.3 last CPP

    Hi, when Oracle plans to publish RPC5. Anyone has idea about it. We intend to apply the last RPC to our Oracle EBS 12.1.3, so for now RPC4's last straight. Please confirm.

    One is applied RPC4 part of their patch updates? If Yes can you give us the issues or bugs. While it will be very useful plan our activities. Thank you.

    There is no date is provided for when a new RPC can be released. As you noted, Oracle E-Business Suite Release 12.1.3 + Recommended Patch Collection 4 [RPC4] has been released via Patch 21236633and is currently the latest EBS CPP, released October 21, 2015.

  • Oracle EBS RUPs vs upgrades

    Can Hello Experts - anyone provide your experience with Oracle EBS ORS and upgrades?

    Our current Version of EBS is 12.1.3.

    We are 2.5 YEARS behind all the ORS. We are weather to think of the upgrade or just Rollup... Pls suggest

    Thank you

    Sandy

    Hello

    Applying the RUP is easier than to do an upgrade.

    Oracle EBS 12.1.3 will be supported for a few years (Dec 2016 for assistance first and December 2019 for the support extended).

    If you wish to enjoy some of the new features in 12.2 then you can do the upgrade.

    Kind regards

    Bashar

  • You want to refresh messge - Oracle EBS

    Hi friends,

    Kindly help me on this. I want to level header to level changes line cascading. Forms of Oracle EBS R12.

    RDBMS: 11.2.0.3.0

    Oracle Applications: 12.1.3

    I did the code changes. But the changes are not thinking at the level of the line. during the review of the code - someone who suggests.

    make a pop as

    You want to update the records?

    YES NO

    If you click Yes - reports should update.

    can someone help me how to do such a pop up and clicking Yes-how do to refresh.

    Let me know if you have any questions.

    Thank you...

    For this error, I think that go_block is not allowed on your action.

    First of all you check your code - go one block then try to execute the query

    you need to debug your code

  • Obtain information from the OS - where Oracle EBS installed

    Hi friends,

    I raise a SR Oracle for more help about Oracle EBS R12. but I need to provide some information.

    Operating system/Version - how can we get this information - is there any query or is it possible to get this info.


    Thank you and best regards,

    User

    I got the info from my DBA.

  • Need ideas for compare current Oracle EBS data against the data warehouse to establish data matches course.

    Hello, I am new to the Oracle Forum. I'm a BI developer and I need to compare data Oracle EBS in my organization with the data in the data warehouse to make sure they match. I am using Informatica for this process by pulling the two sources and comparing. Can someone give me a brief example to make this process or similar methods with Informatica and its transformations so that it can be useful. Thanks in advance. Let me know if you need more information about the process.

    Looks like you are trying to make a reconciliation process? That is you can have implemented BIAPPS (or something custom) and now I want to check your ETL? If this is the case then it's good enough for a test case - we usually start with senior level (actual numbers for each group of companies, for example), then a subset of other different queries for example as per a level in the hierarchy of the org, by position, dates etc.

    and much more expensive as the implement of OLIVIER

    I don't think there are many in the world that is more expensive than the implementation of OLIVIER!

  • What are the steps to perform when the IP changes for Oracle EBS 12.1.3 on RHEL 6

    Hello

    We have Oracle EBS 12.1.3 installed on RHEL 6 with Oracle short built-in extensions.

    Now the server IP address will change.

    Wanted to know the steps to take if the IP address changes so that our instance is running.

    Thanks in advance.

    Thank you

    Patricia

    See MOS Doc 751328.1

  • Oracle EBS 12.2.5 on redhat 7

    Hello

    Did anyone installed Oracle EBS 12.2.5 on redhat 7 yet?

    I use a directory of scene with startcd version 50

    I'm trying, but installation fails with

    Exception string: error in invoking target 'install' of makefile ' / oracle1/VIS/fs2/FMW_Home/webtier/webcache/lib/ins_calypso.mk'. See ' / oracle/oraInventory/logs/install2015-11-04_04-23-07PM.log' for details.

    The installation fails to/oracle/soft/ebs/TechInstallMedia/ohs11117/Disk1/runInstaller - waitForCompletion - ignoreSysPrereqs - force - silent - responsefile /oracle1/VIS/fs2/inst/apps/VIS_svlirc21/temp/cfgHome/response/APPS_OHS_HOME/txkOHS_11117.rsp

    All prerequisitis in DOC ID 1330701.1 are ok

    Thanks for the help

    You're in for a lot of pain! The webtier components delivered with EBS do compilation/installation on RH7.x without a bit of hacking.

    If you want to try, you can work around this error by updating sysliblist

    for example:

    sed-i of /-ldl - lm - lpthread - c - lirc - lipgo / - ldl - lm - lpthread - c - lirc - lipgo-ldms2 - lrt/g ' sysliblist

    But you will hit the next mistake after that...

  • Oracle EBS on AWS cloud

    Hello

    There is some confusion regarding Oracle EBS certified to run on AWS cloud.

    Can someone share the details here if anything?

    Thank you

    Kind regards

    Jonathan

    Configuration of Oracle E-Business Suite Release 12 on Amazon Cloud Infrastructure (Doc ID 1205963.1)

    Check this note. If this isn't the case certified, Oracle would have not published this note

    concerning

    Pravin

  • Upgrade of Oracle EBS base 10.2.0.4 for Oracle Database 12 c

    Hi gurus,

    We are in the process of upgrading our EBS Oracle 10g database to 12 c and so below are the steps we took to upgrade the database with dbua 12 c

    We have improved our database 10g of 10.2.0.4 to 10.2.0.5 compatible for the direct 12 c with dbua upgrade

    1 - install the Oracle 12 c software

    2. run the file from Oracle EBS environment that set the ORACLE_HOME and ORACLE_SID, but not ORACLE_BASE for the database that is upgraded

    3 - Go to the ORACLE_HOME\bin 12 c and run. / dbua

    4 - 12 c dbua GUI appeared, but this isn't picking the 10g database in the Source ORACLE_HOME

    What could be the cause and how is - this solve

    Kind regards

    Hello

    Check the/etc/oratab file.

    Have the correct entries?

    Kind regards

    Bashar

  • Oracle planning and budgeting Application model

    Hello

    I would like to know about this new feature of 11.1.2.4 - planning budgeting Application model and Oracle. Where can we get more details about this?

    I would like to start with a demo app DRM using Oracle planning and budgeting Application model.

    Thank you.

    You can find the application model planning-app - template.xml in the installation of DRM to the player: \Oracle\Middleware\EPMSystem11R1\products\DataRelationshipManagement\server\app-templates

    The integration of the PMCS provided by Oracle guide is useful, the Group let know if you have any other questions.

    Integration of Enterprise Performance Management Guide

Maybe you are looking for