Best Of
Re: moving an old EBS 12.1.3 environment to a new set of servers
Hi,
You need to follow:
R11i / R12: Oracle E-Business Suite Upgrades and Platform Migration (Doc ID 1377213.1)
If your source and target are on the same platform you can clone otherwise you need to use exp/imp or xtts for DB and Application Tier Platform Migration documentation for apps tier.
Regards!
Alexandru
Re: Populating a hyperlink name and url from an advanced formula
Hi, I discovered recently that this can be accomplished by concatenating the label to the URL with a space. For example, set the advanced formula of the hyperlink picker to:
"http://www.oracle.com Oracle"
I will look into getting this added to the documentation.
Re: OMW Object type need package update
Hi @2011,
Thank you for visiting My Oracle Support Community and posting your question here! I want to let you know I have moved your thread to our Design Tools & Output Technologies - JDE1 (MOSC) subcategory for those subject matter experts to engage.
If an answer resolves your question, please choose the "YES" on that comment for "Did this answer the question?".
Thanks,
Gail
Re: Seeing huge concurrency wait events in SQL's related to Oracle AQ
Thanks Bruno, Jonathan.
The issue was indeed due to a jar mismatch, once made compatible, Issue is no longer observed.
Thanks again!
Re: Seeing huge concurrency wait events in SQL's related to Oracle AQ
Thanks for the feedback.
Regards
Jonathan Lewis
Re: Created Transaction Not Visible in Project Actuals Transaction creating using PA_TRANSACTION_INTERFA
Hi Ravi Singh-OC,
This functionality is backported and available on EBS 12.2.10 via patch 36619066:R12.PJC.C.
Thanks
Re: How can I get all 9 digits of precision in systimestamp?
Sequence solution performance depends on database. RAC will not perform as well as no-RAC sequence-wise since we will be forced to create sequence with ORDER and it will put a strain on interconnect. And without ORDER sequence will not ensure "I need to be able to order those inserts by when they happened" if RAC.
I assume Lisa is talking single row inserts, otherwise SYSTIMESTAMP simply will not work since it is calculated once per statement so all rows that insert statement inserts will have same timestamp:
SQL> create or replace
2 function sleep(
3 p_sec number
4 )
5 return timestamp with time zone
6 is
7 begin
8 dbms_session.sleep(p_sec);
9 return systimestamp;
10 end;
11 /
Function created.
SQL> create table tbl(id number,insert_ts timestamp with time zone,actual_insert_ts timestamp with time zone);
Table created.
SQL> insert into tbl select empno,systimestamp,sleep(2) from emp where deptno = 10;
3 rows created.
SQL> column id format 99999
SQL> column insert_ts format a35
SQL> column actual_insert_ts format a35
SQL> select * from tbl;
ID INSERT_TS ACTUAL_INSERT_TS
------ ----------------------------------- -----------------------------------
7782 25-JUL-25 07.57.10.885000 AM -04:00 25-JUL-25 07.57.12.894000 AM -04:00
7839 25-JUL-25 07.57.10.885000 AM -04:00 25-JUL-25 07.57.14.909000 AM -04:00
7934 25-JUL-25 07.57.10.885000 AM -04:00 25-JUL-25 07.57.16.918000 AM -04:00
SQL>
Next question is how insert statements are produced? Is code that produces inserts database server side code (procedure, package, function…) or is it client side code (sqlplus, java, shell script, etc.). If latter, nanosecond accuracy timestamp can be produced using client side OS command (we need to take into account time zone difference between client and database server time zones).
And, as a sanity check, insert time != commit time, if it matters.
SY.
Re: A lot of core.fmd.* in /var/fm/fmd
SunOS xxxxxxxx 5.10 Generic_137137-09 sun4u sparc SUNW,Sun-Fire-15000
Solaris 10 10/08 s10s_u6wos_07b SPARC
Copyright 2008 Sun Microsystems, Inc. All Rights Reserved.
Use is subject to license terms.
Assembled 27 October 2008
fmadm: failed to connect to fmd: RPC: Timed out
online 11:06:41 svc:/system/fmd:default