10g vs 11g xquery performance with XBRL

Finally,I set up 11g on small notebook with 1G memory.
The result was impresive compared to 10g ,but I need more than that.
I used this query generating 761 rows for testing
SELECT c.seqno,xt.ns,xt.name,nvl(xt.lang,'na') as lang,xt.unit,xt.decimals,
xt.value
FROM FINES_CTX c,FINES_XBRL_CLOB r,
XMLTABLE(
XMLNAMESPACES(
'http://www.xbrl.org/2003/linkbase' AS "link",
'http://www.w3.org/1999/xlink' AS "xlink",
'http://www.w3.org/2001/XMLSchema' AS "xsd",
'http://www.xbrl.org/2003/instance' AS "xbrli",
'http://fss.xbrl.or.kr/kr/br/f/aa/2007-06-30' AS
"fines-f-aa",
'http://fss.xbrl.or.kr/kr/br/b/aa/2007-06-30' AS
"fines-b-aa",
'http://fss.xbrl.or.kr/kr/br/f/ad/2007-06-30' AS
"fines-f-ad",
'http://fss.xbrl.or.kr/kr/br/b/ad/2007-06-30' AS
"fines-b-ad",
'http://fss.xbrl.or.kr/kr/br/f/af/2007-06-30' AS
"fines-f-af",
'http://fss.xbrl.or.kr/kr/br/b/af/2007-06-30' AS
"fines-b-af",
'http://fss.xbrl.or.kr/kr/br/f/ai/2007-06-30' AS
"fines-f-ai",
'http://fss.xbrl.or.kr/kr/br/b/ai/2007-06-30' AS
"fines-b-ai",
'http://fss.xbrl.or.kr/kr/br/f/ak/2007-06-30' AS
"fines-f-ak",
'http://fss.xbrl.or.kr/kr/br/b/ak/2007-06-30' AS
"fines-b-ak",
'http://fss.xbrl.or.kr/kr/br/f/bs/2007-06-30' AS
"fines-f-bs",
'http://fss.xbrl.or.kr/kr/br/b/bs/2007-06-30' AS
"fines-b-bs",
'http://xbrl.org/2005/xbrldt' AS "xbrldt",
'http://www.xbrl.org/2004/ref' AS "ref",
'http://www.xbrl.org/2003/XLink' AS "xl"),
for $item in $doc/xbrli:xbrl/*[not(starts-with(name(),"xbrli:")) and not(starts-with(name(),"link:"))]
where $item/@contextRef
return <item decimals="{$item/@decimals}" contextRef="{$item/@contextRef}" xml:lang="{$item/@xml:lang}" unitRef="{$item/@unitRef}" name="{local-name($item)}" ns="{namespace-uri($item)}">{$item/text()}</item>'
PASSING r.xbrl as "doc"
COLUMNS context_id varchar2(128) PATH '@contextRef',
ns varchar2(128) PATH '@ns',
name varchar2(128) PATH '@name',
lang varchar2(2) PATH '@xml:lang',
unit varchar2(16) PATH '@unitRef',
decimals varchar2(64) PATH '@decimals',
value varchar(256) PATH '.'
) xt
WHERE c.report_cd = r.report_cd and c.finance_cd = r.finance_cd and
c.base_month = r.base_month and c.gubn_cd = r.gubn_cd
and c.seqno = 109299 and c.context_id = xt.context_id
all the tables have 500 rows and non-schema-based xmltype clolumn.
FINES_XBRL_CLOB - xmltype stored as clob
FINES_XBRL_BINARY - xmltype stored as binary with xml index
FINES_XBRL_BINARY_NI - xmltype stored as binary without xml index.
case 1 : run on 10g with XMLType stored as CLOB
time: took 1270 secs.- quite disappointed.
plan: 0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=26 Card=82 Bytes=173K)
1 0 NESTED LOOPS (Cost=26 Card=82 Bytes=173K)
2 1 NESTED LOOPS (Cost=2 Card=1 Bytes=2K)
3 2 TABLE ACCESS (BY INDEX ROWID) OF 'FINES_CTXB' (TABLE) (Cost=1 Card=1 Bytes=119)
4 3 INDEX (UNIQUE SCAN) OF 'PK_FINES_CTXB' (INDEX (UNIQUE)) (Cost=1 Card=1)
5 2 TABLE ACCESS (BY INDEX ROWID) OF 'FINES_XBRLB' (TABLE) (Cost=1 Card=82 Bytes=164K)
6 5 INDEX (UNIQUE SCAN) OF 'PK_FINES_XBRLB' (INDEX (UNIQUE)) (Cost=0 Card=1)
7 1 COLLECTION ITERATOR (PICKLER FETCH) OF 'SYS.XQSEQUENCEFROMXMLTYPE' (PROCEDURE)
case 2: run on 11g with XMLType stored as CLOB
time: took 27 secs. - almost 50 times faster
plan:
0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=114 Card=1 Bytes=2K)
1 0 FILTER
2 1 NESTED LOOPS (Cost=32 Card=82 Bytes=173K)
3 2 NESTED LOOPS (Cost=3 Card=1 Bytes=2K)
4 3 TABLE ACCESS (BY INDEX ROWID) OF 'FINES_CTX' (TABLE) (Cost=2 Card=1 Bytes=119)
5 4 INDEX (UNIQUE SCAN) OF 'PK_FINES_CTX' (INDEX (UNIQUE)) (Cost=1 Card=1)
6 3 TABLE ACCESS (BY INDEX ROWID) OF 'FINES_XBRL_CLOB' (TABLE) (Cost=1 Card=5K Bytes=10M)
7 6 INDEX (UNIQUE SCAN) OF 'PK_FINES_XBRL_CLOB' (INDEX (UNIQUE)) (Cost=0 Card=1)
8 2 COLLECTION ITERATOR (PICKLER FETCH) OF 'SYS.XMLSEQUENCEFROMXMLTYPE' (PROCEDURE)
9 1 COLLECTION ITERATOR (PICKLER FETCH) OF 'SYS.XQSEQUENCEFROMXMLTYPE' (PROCEDURE)
case 3: run on 11g with XMLType stored as BINARY no XMLIndex
time: 10 secs (9.6 sec exactly) , 120 times faster..
0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=113 Card=1 Bytes=2K)
1 0 FILTER
2 1 NESTED LOOPS (Cost=33 Card=80 Bytes=169K)
3 2 NESTED LOOPS (Cost=3 Card=1 Bytes=2K)
4 3 TABLE ACCESS (BY INDEX ROWID) OF 'FINES_CTX' (TABLE) (Cost=2 Card=1 Bytes=119)
5 4 INDEX (UNIQUE SCAN) OF 'PK_FINES_CTX' (INDEX (UNIQUE)) (Cost=1 Card=1)
6 3 TABLE ACCESS (BY INDEX ROWID) OF 'FINES_XBRL_BINARY_NI' (TABLE) (Cost=1 Card=82 Bytes=164K)
7 6 INDEX (UNIQUE SCAN) OF 'PK_FINES_BINARY_XBRL_NI' (INDEX (UNIQUE)) (Cost=0 Card=1)
8 2 XPATH EVALUATION
9 1 XPATH EVALUATION
CREATE INDEX fines_xbrl_binary_ix ON fines_xbrl_binary (xbrl) INDEXTYPE IS XDB.XMLIndex
case 4: run on 11g with XMLType stored as BINARY and XMLIndex
time: 574 secs. - oops...not good.
plan: quite long..
0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=16 Card=1 Bytes=5K)
1 0 FILTER
2 1 NESTED LOOPS
3 2 NESTED LOOPS (Cost=4 Card=1 Bytes=4K)
4 3 TABLE ACCESS (BY INDEX ROWID) OF 'XDB.X$PT1MP1MWL3978FCE0G24J0CM85AM' (TABLE) (Cost=0 Card=1 Bytes=1008)
5 4 INDEX (RANGE SCAN) OF 'XDB.X$PR1MP1MWL3978FCE0G24J0CM85AM' (INDEX (UNIQUE)) (Cost=0 Card=1)
6 3 INDEX (RANGE SCAN) OF 'SYS69876_FINES_XBRL_PATHID_IX' (INDEX) (Cost=2 Card=3)
7 2 TABLE ACCESS (BY INDEX ROWID) OF 'SYS69876_FINES_XBRL_PATH_TABLE' (TABLE) (Cost=4 Card=1 Bytes=3K)
8 0 FILTER
9 8 NESTED LOOPS
10 9 NESTED LOOPS (Cost=4 Card=1 Bytes=4K)
11 10 TABLE ACCESS (BY INDEX ROWID) OF 'XDB.X$PT1MP1MWL3978FCE0G24J0CM85AM' (TABLE) (Cost=0 Card=1 Bytes=1008)
12 11 INDEX (RANGE SCAN) OF 'XDB.X$PR1MP1MWL3978FCE0G24J0CM85AM' (INDEX (UNIQUE)) (Cost=0 Card=1)
13 10 INDEX (RANGE SCAN) OF 'SYS69876_FINES_XBRL_PATHID_IX' (INDEX) (Cost=2 Card=3)
14 9 TABLE ACCESS (BY INDEX ROWID) OF 'SYS69876_FINES_XBRL_PATH_TABLE' (TABLE) (Cost=4 Card=1 Bytes=3K)
15 0 FILTER
16 15 NESTED LOOPS
17 16 NESTED LOOPS (Cost=4 Card=1 Bytes=4K)
18 17 TABLE ACCESS (BY INDEX ROWID) OF 'XDB.X$PT1MP1MWL3978FCE0G24J0CM85AM' (TABLE) (Cost=0 Card=1 Bytes=1008)
19 18 INDEX (RANGE SCAN) OF 'XDB.X$PR1MP1MWL3978FCE0G24J0CM85AM' (INDEX (UNIQUE)) (Cost=0 Card=1)
20 17 INDEX (RANGE SCAN) OF 'SYS69876_FINES_XBRL_PATHID_IX' (INDEX) (Cost=2 Card=3)
21 16 TABLE ACCESS (BY INDEX ROWID) OF 'SYS69876_FINES_XBRL_PATH_TABLE' (TABLE) (Cost=4 Card=1 Bytes=3K)
22 0 FILTER
23 22 NESTED LOOPS
24 23 NESTED LOOPS (Cost=4 Card=1 Bytes=4K)
25 24 TABLE ACCESS (BY INDEX ROWID) OF 'XDB.X$PT1MP1MWL3978FCE0G24J0CM85AM' (TABLE) (Cost=0 Card=1 Bytes=1008)
26 25 INDEX (RANGE SCAN) OF 'XDB.X$PR1MP1MWL3978FCE0G24J0CM85AM' (INDEX (UNIQUE)) (Cost=0 Card=1)
27 24 INDEX (RANGE SCAN) OF 'SYS69876_FINES_XBRL_PATHID_IX' (INDEX) (Cost=2 Card=3)
28 23 TABLE ACCESS (BY INDEX ROWID) OF 'SYS69876_FINES_XBRL_PATH_TABLE' (TABLE) (Cost=4 Card=1 Bytes=3K)
29 0 SORT (AGGREGATE) (Card=1 Bytes=3K)
30 29 FILTER
31 30 TABLE ACCESS (BY INDEX ROWID) OF 'SYS69876_FINES_XBRL_PATH_TABLE' (TABLE) (Cost=5 Card=32 Bytes=110K)
32 31 INDEX (RANGE SCAN) OF 'SYS69876_FINES_XBRL_ORDKEY_IX' (INDEX) (Cost=3 Card=92)
33 0 FILTER
34 33 NESTED LOOPS
35 34 NESTED LOOPS (Cost=4 Card=1 Bytes=4K)
36 35 TABLE ACCESS (BY INDEX ROWID) OF 'XDB.X$PT1MP1MWL3978FCE0G24J0CM85AM' (TABLE) (Cost=0 Card=1 Bytes=1008)
37 36 INDEX (RANGE SCAN) OF 'XDB.X$PR1MP1MWL3978FCE0G24J0CM85AM' (INDEX (UNIQUE)) (Cost=0 Card=1)
38 35 INDEX (RANGE SCAN) OF 'SYS69876_FINES_XBRL_PATHID_IX' (INDEX) (Cost=2 Card=3)
39 34 TABLE ACCESS (BY INDEX ROWID) OF 'SYS69876_FINES_XBRL_PATH_TABLE' (TABLE) (Cost=4 Card=1 Bytes=3K)
40 0 FILTER
41 40 NESTED LOOPS
42 41 NESTED LOOPS (Cost=4 Card=1 Bytes=4K)
43 42 TABLE ACCESS (BY INDEX ROWID) OF 'XDB.X$PT1MP1MWL3978FCE0G24J0CM85AM' (TABLE) (Cost=0 Card=1 Bytes=1008)
44 43 INDEX (RANGE SCAN) OF 'XDB.X$PR1MP1MWL3978FCE0G24J0CM85AM' (INDEX (UNIQUE)) (Cost=0 Card=1)
45 42 INDEX (RANGE SCAN) OF 'SYS69876_FINES_XBRL_PATHID_IX' (INDEX) (Cost=2 Card=3)
46 41 TABLE ACCESS (BY INDEX ROWID) OF 'SYS69876_FINES_XBRL_PATH_TABLE' (TABLE) (Cost=4 Card=1 Bytes=3K)
-- continue....
With very limited test case, I personally concluded that oracle 11g's engine related XML is much better than 10g, especially when using Binary type ,getting additional performance boost.
xbrl document is basically flat ,not heirarchical structured, that makes XMLIndex inefficient ,I guess.
Is there any good way to use XMLIndex more efficient just with this kind of case ?
Please point out anything I can do more.
thanks.

I guess you meant to say / instead of "...oracle 11g's engine related XML is much better than 10g..." - "oracle 11g's XQuery engine related XML is much better than 10g"...
Did you create the XMLIndex as described (case 4)...
CREATE INDEX fines_xbrl_binary_ix ON fines_xbrl_binary (xbrl) INDEXTYPE IS XDB.XMLIndexIn different words, you didn't use "path subsetting" (http://www.liberidu.com/blog/?p=242) ?
I guess you created statistics ?
Thanks for sharing !!!

Similar Messages

  • After Migrating from 10g to 11g Geeting problems with Guided navigations.

    After Migrating from 10g to 11g Geeting problems with Guided navigations and section navigations not working.
    And we are getting the following error <<odbc driver returned an error (SQLExecDirectW)>> where we have used navigations.
    In 10G we have Guided navigation Reports to display the Reports links and intermediate reports for conditionally displaying the Dashboard section(Reports) but after migrating to 11g Guided navigation reports and conditional reports are not working..
    We know that in 11g section navigation replaced with conditions and Guided navigation replaced with action link.. but
    do we need to recreate those reports in actions and condition or is there any work around avoid reworking.

    Hi Both,
    Thanks for the reply ...
    For Guided navigation we are getting like below error:
    Odbc driver returned an error (SQLExecDirectW).
    For Conditional dashboard section we are getting like below error:
    "saw.aViewsToRefresh = [];saw.aViewsToRefresh['d:dashboard~p:1egt6il5utl0uu8n~s:3jsmgfs3c1r4tn7c~n:condition'] = true;saw.aViewsToRefresh['d:dashboard~p:1egt6il5utl0uu8n~s:nos5q43jvjmi643b~n:condition'] = true;"

  • 10g to 11g migration - problem with JhsCollectionModel

    I'm trying to migrate a JHS app from Jdev 10.1.3.4 to 11.1.1.2. The only thing worthy of note about the app is that it uses Custom authentication and authorization. Steps I went thru are below. Note that I haven't installed the latest release posted today.
    In Jdev 10.1.3.4:
    Create a new app with only one entity/VO.
    Enable JHS, do app definition with no changes other than selecting Custom authentication and authorization. Run app generator.
    Validate app runs successfully.
    In Jdev 11.1.1.2:
    Open app.
    Use ADF migration wizard as is - no changing of any defaults.
    Get migration successful messages. There were some errors about the .vm templates and some warnings but nothing significant.
    Reenable JHs for this project, select Overwrite for all and answer yes to question Do you want to migrate the Application Structure file from version 10.1.3 to 11.1.1?
    Run application generator with below result.
    Error: Unable to find the jar file on the source or class path...\path\jhsadfrt-11.1.1.jar....Would you like to add? Answered yes
    Get one error: JAG-00149 [ TamJhsModule ] Main Controller Config file cannot be named faces-config.xml.
    Modified application definition and changed name for faces-config.xml file
    Run application generator again. This time it finishes successfully - just a couple of warnings about the optimistic locking mode and menu model file not being generated.
    Make all and get one error:
    Error(19,8): com.guideworks.tv.model.client.TamJhsModuleClient is not abstract and does not override abstract method applyBindParams(java.lang.String,java.util.HashMap,java.lang.Boolean) in oracle.jheadstart.model.adfbc.v2.JhsApplicationModule
    Fix error by adding an empty override method for the applyBindParams
    Make all with no errors.
    Try to run application and get errors (after dashed line below). Cause appears to be missing class.
    Caused By: java.lang.ClassNotFoundException: oracle.jheadstart.controller.jsf.bean.JhsCollectionModel
    Looking in jhsadfrt-11.1.1.jar, I see that the class doesn't exist.
    =====================================================
    Errors from run of application.
    *** Using port 7101 ***
    "C:\Documents and Settings\tosbor001\Application Data\JDeveloper\system11.1.1.2.36.55.36\DefaultDomain\bin\startWebLogic.cmd"
    [waiting for the server to complete its initialization...]
    JAVA Memory arguments: -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m
    WLS Start Mode=Development
    CLASSPATH=C:\oracle\MIDDLE~3\patch_wls1032\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~3\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\oracle\MIDDLE~3\JDK160~1.5-3\lib\tools.jar;C:\oracle\MIDDLE~3\utils\config\10.3\config-launch.jar;C:\oracle\MIDDLE~3\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\oracle\MIDDLE~3\WLSERV~1.3\server\lib\weblogic.jar;C:\oracle\MIDDLE~3\modules\features\weblogic.server.modules_10.3.2.0.jar;C:\oracle\MIDDLE~3\WLSERV~1.3\server\lib\webservices.jar;C:\oracle\MIDDLE~3\modules\ORGAPA~1.0/lib/ant-all.jar;C:\oracle\MIDDLE~3\modules\NETSFA~1.0_1/lib/ant-contrib.jar;C:\oracle\MIDDLE~3\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\oracle\MIDDLE~3\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\oracle\MIDDLE~3\WLSERV~1.3\server\lib\xqrl.jar
    PATH=C:\oracle\MIDDLE~3\patch_wls1032\profiles\default\native;C:\oracle\MIDDLE~3\patch_jdev1111\profiles\default\native;C:\oracle\MIDDLE~3\WLSERV~1.3\server\native\win\32;C:\oracle\MIDDLE~3\WLSERV~1.3\server\bin;C:\oracle\MIDDLE~3\modules\ORGAPA~1.0\bin;C:\oracle\MIDDLE~3\JDK160~1.5-3\jre\bin;C:\oracle\MIDDLE~3\JDK160~1.5-3\bin;C:\orant\bin;C:\oracle\product\10.2.0\client_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Intel\WiFi\bin\;C:\orant\jdk\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\Windows Imaging\;C:\oracle\MIDDLE~3\WLSERV~1.3\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_14"
    Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
    Java HotSpot(TM) Client VM (build 14.0-b16, mixed mode)
    Starting WLS with line:
    C:\oracle\MIDDLE~3\JDK160~1.5-3\bin\java -client -Xms256m -Xmx512m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=512m -Dweblogic.Name=DefaultServer -Djava.security.policy=C:\oracle\MIDDLE~3\WLSERV~1.3\server\lib\weblogic.policy -Djavax.net.ssl.trustStore=C:\oracle\MiddlewareR2\wlserver_10.3\server\lib\DemoTrust.jks -Dweblogic.nodemanager.ServiceEnabled=true -Xverify:none -da -Dplatform.home=C:\oracle\MIDDLE~3\WLSERV~1.3 -Dwls.home=C:\oracle\MIDDLE~3\WLSERV~1.3\server -Dweblogic.home=C:\oracle\MIDDLE~3\WLSERV~1.3\server -Djps.app.credential.overwrite.allowed=true -Ddomain.home=C:\DOCUME~1\TOSBOR~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1 -Dcommon.components.home=C:\oracle\MIDDLE~3\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=C:\oracle\MIDDLE~3\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.domain.config.dir=C:\DOCUME~1\TOSBOR~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1 -Doracle.server.config.dir=C:\DOCUME~1\TOSBOR~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1\servers\DefaultServer -Doracle.security.jps.config=C:\DOCUME~1\TOSBOR~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Digf.arisidbeans.carmlloc=C:\DOCUME~1\TOSBOR~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1\carml -Digf.arisidstack.home=C:\DOCUME~1\TOSBOR~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\config\FMWCON~1\arisidprovider -Dweblogic.alternateTypesDirectory=\modules\oracle.ossoiap_11.1.1,\modules\oracle.oamprovider_11.1.1 -Dweblogic.jdbc.remoteEnabled=false -Dwsm.repository.path=C:\DOCUME~1\TOSBOR~1\APPLIC~1\JDEVEL~1\SYSTEM~1.36\DEFAUL~1\oracle\store\gmds -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\oracle\MIDDLE~3\patch_wls1032\profiles\default\sysext_manifest_classpath;C:\oracle\MIDDLE~3\patch_jdev1111\profiles\default\sysext_manifest_classpath weblogic.Server
    <Jun 3, 2010 1:14:27 PM MDT> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Java HotSpot(TM) Client VM Version 14.0-b16 from Sun Microsystems Inc.>
    <Jun 3, 2010 1:14:27 PM MDT> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.2.0 Tue Oct 20 12:16:15 PDT 2009 1267925 >
    <Jun 3, 2010 1:14:29 PM MDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Jun 3, 2010 1:14:29 PM MDT> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Jun 3, 2010 1:14:29 PM MDT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\tosbor001\Application Data\JDeveloper\system11.1.1.2.36.55.36\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Jun 3, 2010 1:14:29 PM MDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\tosbor001\Application Data\JDeveloper\system11.1.1.2.36.55.36\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00031. Log messages will continue to be logged in C:\Documents and Settings\tosbor001\Application Data\JDeveloper\system11.1.1.2.36.55.36\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <Jun 3, 2010 1:14:29 PM MDT> <Notice> <Log Management> <BEA-170019> <The server log file C:\Documents and Settings\tosbor001\Application Data\JDeveloper\system11.1.1.2.36.55.36\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log is opened. All server side log events will be written to this file.>
    <Jun 3, 2010 1:14:35 PM MDT> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Jun 3, 2010 1:14:46 PM MDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Jun 3, 2010 1:14:46 PM MDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Jun 3, 2010 1:14:57 PM MDT> <Notice> <LoggingService> <BEA-320400> <The log file C:\Documents and Settings\tosbor001\Application Data\JDeveloper\system11.1.1.2.36.55.36\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Jun 3, 2010 1:14:57 PM MDT> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Documents and Settings\tosbor001\Application Data\JDeveloper\system11.1.1.2.36.55.36\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00028. Log messages will continue to be logged in C:\Documents and Settings\tosbor001\Application Data\JDeveloper\system11.1.1.2.36.55.36\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    <Jun 3, 2010 1:14:57 PM MDT> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Jun 3, 2010 1:15:00 PM MDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Jun 3, 2010 1:15:00 PM MDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Jun 3, 2010 1:15:00 PM MDT> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on 127.0.0.1:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jun 3, 2010 1:15:00 PM MDT> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 10.210.2.26:7101 for protocols iiop, t3, ldap, snmp, http.>
    <Jun 3, 2010 1:15:00 PM MDT> <Notice> <WebLogicServer> <BEA-000331> <Started WebLogic Admin Server "DefaultServer" for domain "DefaultDomain" running in Development Mode>
    <Jun 3, 2010 1:15:00 PM MDT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Jun 3, 2010 1:15:00 PM MDT> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>
    IntegratedWebLogicServer startup time: 36845 ms.
    IntegratedWebLogicServer started.
    [Running application tamjhssec on Server Instance IntegratedWebLogicServer...]
    [01:15:04 PM] ---- Deployment started. ----
    [01:15:04 PM] Target platform is (Weblogic 10.3).
    [01:15:05 PM] Retrieving existing application information
    [01:15:06 PM] Running dependency analysis...
    [01:15:06 PM] Deploying 2 profiles...
    [01:15:11 PM] Wrote Web Application Module to C:\Documents and Settings\tosbor001\Application Data\JDeveloper\system11.1.1.2.36.55.36\o.j2ee\drs\tamjhssec\ViewControllerWebApp.war
    [01:15:12 PM] Wrote Enterprise Application Module to C:\Documents and Settings\tosbor001\Application Data\JDeveloper\system11.1.1.2.36.55.36\o.j2ee\drs\tamjhssec
    [01:15:13 PM] Deploying Application...
    <Jun 3, 2010 1:15:14 PM MDT> <Warning> <J2EE> <BEA-160195> <The application version lifecycle event listener oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener is ignored because the application tamjhssec is not versioned.>
    <Jun 3, 2010 1:15:23 PM MDT> <Error> <HTTP> <BEA-101371> <There was a failure when processing annotations for application C:\Documents and Settings\tosbor001\Application Data\JDeveloper\system11.1.1.2.36.55.36\o.j2ee\drs\tamjhssec\ViewControllerWebApp.war. Please make sure that the annotations are valid. The error is oracle.jheadstart.controller.jsf.bean.JhsCollectionModel>
    <Jun 3, 2010 1:15:24 PM MDT> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1275592513661' for task '0'. Error is: 'weblogic.application.ModuleException: Failed to load webapp: 'tamjhssec-ViewController-context-root''
    weblogic.application.ModuleException: Failed to load webapp: 'tamjhssec-ViewController-context-root'
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:378)
         at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:391)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
         Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: oracle.jheadstart.controller.jsf.bean.JhsCollectionModel
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
         Truncated. see log file for complete stacktrace
    >
    <Jun 3, 2010 1:15:25 PM MDT> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'tamjhssec'.>
    <Jun 3, 2010 1:15:25 PM MDT> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: Failed to load webapp: 'tamjhssec-ViewController-context-root'
         at weblogic.servlet.internal.WebAppModule.prepare(WebAppModule.java:378)
         at weblogic.application.internal.flow.ScopedModuleDriver.prepare(ScopedModuleDriver.java:176)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:199)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:391)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:83)
         Truncated. see log file for complete stacktrace
    Caused By: java.lang.ClassNotFoundException: oracle.jheadstart.controller.jsf.bean.JhsCollectionModel
         at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
         at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
         at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
         Truncated. see log file for complete stacktrace
    >
    [01:15:26 PM] #### Deployment incomplete. ####
    [01:15:26 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)
    #### Cannot run application tamjhssec due to error deploying to IntegratedWebLogicServer.
    [Application tamjhssec stopped and undeployed from Server Instance IntegratedWebLogicServer]
    Edited by: Tammy Osborn on Jun 3, 2010 1:16 PM

    Tammy,
    JhsCollectionModel no longer exists in release 11. It is replaced by the TableBean class.
    If you generate your application with the default templates, there should be no reference to JhsCollectionModel anymore.
    May be you are using a custom template that uses a managed bean that still references this class?
    If you search your ViewController project for JhsCollectionModel, what entries do you find?
    Steven Davelaar,
    JHeadstart Team.

  • Oracle 10g vs Oracle 11g query performance

    Hi everyone,
    We are moving from Oracle 10g to Oracle 11g database.
    I have a query which in Oracle 1g takes 85 seconds to run, but when I run the same query in Oracle 11g database, it takes 635 seconds.
    I have confirmed that all indexes on tables involved are enabled.
    Does anyone have any pointers, what should I look into. I have compared explain plans and clearly they are different. Oracle 11g is taking a different approach than Oracle 1g.
    Thanks

    Pl post details of OS versions, exact database versions (to 4 digits) and init.ora parameters of the 10g and 11g databases. Have statistics been gathered after the upgrade ?
    For posting tuning requests, pl see these threads
    HOW TO: Post a SQL statement tuning request - template posting
    When your query takes too long ...
    Pl see if the SQL Performance Analyzer can help - MOS Doc 562899.1 (TESTING SQL PERFORMANCE IMPACT OF AN ORACLE 9i TO ORACLE DATABASE 10g RELEASE 2 UPGRADE WITH SQL PERFORMANCE ANALYZER)
    HTH
    Srini

  • Upgrade issues OBIEE 10g to 11g along with OBIA upgrade

    Hi,
    I have to upgrade OBIEE 10.1.3.4.1 to OBIEE 11.1.1.5 along with OBIA 7.9.6.1 to 7.9.6.5(Informatica 8.6.1 to 9.0.1) at my client location and I have very little knowledge on it. and want to know/have help documents for upgrade.
    And if anyone in the forums involved in upgrade please list the errors/issues occured during upgrade and after upgrade.
    1. OBIEE 10g to 11g upgrade issues??
    2. OBIA OBIA 7.9.6.1 to 7.9.6.5 upgrade issues along with 10g to 11g??
    3. Informatica 8.6.1 to 9.0.1 upgrade issues??
    4. DAC upgrade issues??
    any response for my questions is appreciated.
    Thanks
    Jay.
    Edited by: Jay on Apr 11, 2012 9:11 AM

    HI Jay,
    We cannot explained thread list here, If you get any errors plz post me,will try to help out.
    This is oracle document link - This document has given step by step with screen shots upgration for 10g to 11g ,Please refer the below link.
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/bi/bi11115/upgrade/upgrade_to_11g.htm
    http://obieemanu.blogspot.in/2011/05/rpd-upgration-from-10g-to-11g.html
    http://docs.oracle.com/cd/E21764_01/upgrade.1111/e10125/ua_command_line.htm#ASMAS149
    Award points it is useful.
    Thanks,
    satya

  • Database migrated from Oracle 10g to 11g Discoverer report performance issu

    Hi All,
    We are now getting issue in Discoverer Report performance as the report is keep on running when database got upgrade from 10g to 11g.
    In database 10g the report is working fine but the same report is not working fine in 11g.
    The query i have changed as I have passed the date format TO_CHAR("DD-MON-YYYY" and removed the NVL & TRUNC function from the existing query.
    The report is now working fine in Database 11g backhand but when I am using the same query in Discoverer it is not working and report is keep on running.
    Please advise.
    Regards,

    Pl post exact OS, database and Discoverer versions. After the upgrade, have statistics been updated ? Have you traced the Discoverer query to determine where the performance issue is ?
    How To Find Oracle Discoverer Diagnostic and Tracing Guides [ID 290658.1]
    How To Enable SQL Tracing For Discoverer Sessions [ID 133055.1]
    Discoverer 11g: Performance degradation after Upgrade to Database 11g [ID 1514929.1]
    HTH
    Srini

  • Migrating with RMAN from 10g to 11g

    Hi gurus,
    I am following the following procedure to migrate database from 10g to 11g using rman
    Source side:
    RMAN>connect target
    RMAN>backup database;
    RMAN>backup archivelog all;
    RMAN>backup current controlfile;
    SQL> create pfile from spfile;
    Copied datafile, archivelog backup files and pfile and password files to target side. i.e. on 11g server side
    Target side:
    Set proper parameters for 11g
    SQL>startup nomount;
    RMAN>connect target
    RMAN>set dbid=<source database id>
    RMAN>catalog start with '<rman backup file location';
    RMAN>restore controlfile;
    RMAN>run
    set newname for datafile 1 to '<target datafiles location with file name';
    restore database;
    switch datafile all;
    finished
    upto now it's success full when i am trying to recover
    RMAN>recover database;
    it is saying
    rman 00571
    rman 00569
    rman 00571
    rman 03002
    ora - 19698
    can you please suggest the solution for this.
    thanks a lot.

    I'm not sure what you're doing is supported.
    You are taking a 10g database and restore and recover it using 11g software.
    I think you are allowed to do that with 10g software only.

  • Issue with RN messages between 10g and 11g

    Hi All,
    We are facing some issues for RN messages;
    We have configured Rosettanet Actions on both 10G and 11G . In 11G we have the RNTP (remote trading partner) in 10G we have host. The messages posted from host(10g) are not reaching the 11g remote TP, but failing due to the below errors;
    <29-Aug-2012 14:47:07 o'clock IST> <Error> <oracle.soa.b2b.engine> <BEA-000000> <B2B Label:PCBPEL_11.1.1.6.0_GENERIC_111
    214.0600.1553: java.lang.NullPointerException
    at oracle.tip.b2b.exchange.rnif11.RNExchangePlugin.decodeIncomingMessage(RNExchangePlugin.java:212)
    at oracle.tip.b2b.exchange.rnif11.RNExchangePlugin.decodeIncomingMessage(RNExchangePlugin.java:582)
    at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:1919)
    at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1650)
    at oracle.tip.b2b.engine.Engine.incomingContinueProcess(Engine.java:4042)
    at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3718)
    at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3205)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:677)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:211)
    at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
    at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:184)
    at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Could anyone help us on this issue?
    Regards,
    Raj

    Hi Dheeraj ,
    1. With Both 10G we are getting the below error with Rosettanent Exchange Protocol Version 01.10 :
    Description: An unexpected error occurred during validation
    StackTrace:
    Error -: AIP-51505: General Validation Error: Error -: AIP-51505: General Validation Error: oracle.xml.parser.schema.XSDException
    at oracle.tip.adapter.b2b.document.rn20.RNDocumentPlugin.processIncomingDocument(RNDocumentPlugin.java:163)
    at oracle.tip.adapter.b2b.engine.Engine.processIncomingMessage(Engine.java:1927)
    at oracle.tip.adapter.b2b.engine.Engine.incomingContinueProcess(Engine.java:2617)
    at oracle.tip.adapter.b2b.engine.Engine.handleMessageEvent(Engine.java:2487)
    at oracle.tip.adapter.b2b.engine.Engine.processEvents(Engine.java:2442)
    at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:527)
    at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:374)
    at java.lang.Thread.run(Thread.java:534)
    However , when we changed the Exchange Protocol Version to V02.00 we got the below error :
    Machine Info: (APT3VW03)
    Description: B2B adapter general error
    StackTrace:
    Error -: AIP-50031: B2B adapter general error: Error -: AIP-50025: Repository error : Error -: AIP-50547: Trading partner agreement not found for the given input values: From party[NAME] "null", To party[NAME] "null", Business action name "RequestPurchaseOrderAction"; also verify agreement effectiveToDate
    at oracle.tip.adapter.b2b.engine.Engine.processIncomingMessage(Engine.java:2006)
    at oracle.tip.adapter.b2b.engine.Engine.incomingContinueProcess(Engine.java:2617)
    at oracle.tip.adapter.b2b.engine.Engine.handleMessageEvent(Engine.java:2487)
    at oracle.tip.adapter.b2b.engine.Engine.processEvents(Engine.java:2442)
    at oracle.tip.adapter.b2b.data.MsgListener.onMessage(MsgListener.java:527)
    at oracle.tip.adapter.b2b.data.MsgListener.run(MsgListener.java:374)
    at java.lang.Thread.run(Thread.java:534)
    2. With both 11G Environments we are getting the below error (Exchange Protocol Version 01.10):
    <05-Sep-2012 13:49:36 o'clock IST> <Error> <oracle.soa.b2b.engine> <BEA-000000> <B2B Label:PCBPEL_11.1.1.6.0_GENERIC_111
    214.0600.1553: java.lang.NullPointerException
    at oracle.tip.b2b.exchange.rnif11.RNExchangePlugin.decodeIncomingMessage(RNExchangePlugin.java:212)
    at oracle.tip.b2b.exchange.rnif11.RNExchangePlugin.decodeIncomingMessage(RNExchangePlugin.java:582)
    at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:1919)
    at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1650)
    at oracle.tip.b2b.engine.Engine.incomingContinueProcess(Engine.java:4042)
    at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3883)
    at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3205)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:677)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:211)
    at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
    at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:184)
    at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    >
    <05-Sep-2012 13:49:36 o'clock IST> <Error> <oracle.soa.b2b.engine> <BEA-000000> <java.lang.NullPointerException
    at oracle.tip.b2b.msgproc.DbAccess.insertMsgTblRowImpl(DbAccess.java:621)
    at oracle.tip.b2b.msgproc.DbAccess.insertMsgTblRow(DbAccess.java:524)
    at oracle.tip.b2b.msgproc.DbAccess.updateWireBusinessToErrorState(DbAccess.java:6241)
    at oracle.tip.b2b.engine.Engine.handleInboundException(Engine.java:5130)
    at oracle.tip.b2b.engine.Engine.handleExceptionBeforeIncomingTPA(Engine.java:5062)
    at oracle.tip.b2b.engine.Engine.processIncomingMessageImpl(Engine.java:1983)
    at oracle.tip.b2b.engine.Engine.processIncomingMessage(Engine.java:1650)
    at oracle.tip.b2b.engine.Engine.incomingContinueProcess(Engine.java:4042)
    at oracle.tip.b2b.engine.Engine.handleMessageEvent(Engine.java:3883)
    at oracle.tip.b2b.engine.Engine.processEvents(Engine.java:3205)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.processEvent(ThreadWorkExecutor.java:677)
    at oracle.tip.b2b.engine.ThreadWorkExecutor.run(ThreadWorkExecutor.java:211)
    at oracle.integration.platform.blocks.executor.WorkManagerExecutor$1.run(WorkManagerExecutor.java:120)
    at weblogic.work.j2ee.J2EEWorkManager$WorkWithListener.run(J2EEWorkManager.java:184)
    at weblogic.work.DaemonWorkThread.run(DaemonWorkThread.java:30)
    Regards,
    Raj

  • Possibility & Drawback  Using JDeveloper 11g ADF Faces with Oracle 10g DB

    We are new to ADF Faces, would like to use JDeveloper 11g ADF Faces with Oracle 10g database (Enterprise Edition). As we are new to JDeveloper 11g ADF BC, so we want to know about the Possibility & the Drawback.
    Edited by: eng.shahed on Apr 5, 2010 11:21 AM

    i dont think so any drawbacks using Jdeveloper with any database.....its a open product ... You can use it with Sybase, MySQL, Oracle etc etc..

  • 11g SQL Performance Analyzer backport to 10g?

    My Question:
    In the context of 9i -> 10g upgrade and to deal with perfomance issues, would be good to have this tool available as well. I understood it's PL/SQL so, was wondering if anybody has knowledge of it being requested for back-port or even if back-ported already?

    Given the amount of infrastructure required to support it my guess is that it isn't going to happen. But then I thought the same thing about Streams.
    What prevents you from using it in 11g while running production in 10gR2?

  • Oracle 10g  – Performance with BIG CONTEXT indexes

    I would like to use Oracle XE 10.2.0.1.0 only for the full-text searching of the files residing outside the database on the FTP server.
    Recently I have found out that size of the files to be indexed is 5GB.
    As I have read somewhere on this forum before size of the index should be 30-40% of the indexed text files (so with formatted documents like PDF or DOC even less).
    Lets say that the CONTEXT index size over these files will be 1.5-2GB.
    Number of the concurrent user will be max. 5.
    I can not easily test it my self yet.
    Does anybody have any experience with Oracle XE or other Oracle Database edition performance with the CONTEXT index this BIG?
    Will Oracle XE hardware resources license limitation be sufficient to handle one CONTEXT indexe this BIG?
    (Oracle XE license limitations: 1 GB RAM and 1 CPU)
    Regards.

    That depends on at least three things:
    (1) what is the range of words that will appear in the document set (wide range of documents = smaller resultsets = better performance)
    (2) how precise are the user's queries likely to be (more precise = smaller resultsets = better performance)
    (3) how many milliseconds are your users willing to wait for results
    So, unfortunately, you'll probably have to experiment a bit before you'll know...

  • Unable to Sign in  analytics After Upgraded obiee from 10g to 11g

    Hi all,
    I have problem when upgrading catalog from 10g to 11g.
    The error is:" Unable to Sign In . An invalid User Name or Password was entered. "
    I upgraded following the steps like this:
    1.Login EM and check BI server is running successfully.
    2.Started the UA.bat.
    Select the operation:Upgrade Oracle BI RPD and Web Catalog.
    Step by Step,and the upgrade completed successfully.
    3.Open the RPD online using the Admintool succefully.
    4.But when I Login the BI and view the dashboard with the 10g's user (Administrator),the page appear the error "*Unable to Sign In . An invalid User Name or Password was entered.* "
    5.Then I Try to Regenerating User GUIDs
    1. Update the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter in NQSConfig.INI:
    a. Open NQSConfig.INI for editing at:
    b. ORACLE_INSTANCE/config/OracleBIServerComponent/coreapplication_obisn
    c. Locate the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter and set it to YES, as follows:
    d. FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = YES;
    e. Save and close the file.
    2. Update the Catalog element in instanceconfig.xml:
    a. Open instanceconfig.xml for editing at:
    b. ORACLE_INSTANCE/config/OracleBIPresentationServicesComponent/
    c. coreapplication_obipsn
    d. Locate the Catalog element and update it as follows:
    e. <Catalog>
    f. <UpgradeAndExit>false</UpgradeAndExit>
    g. <UpdateAccountGUIDs>UpdateAndExit</UpdateAccountGUIDs>
    h. </Catalog>
    i. Save and close the file.
    3. Restart the Oracle Business Intelligence system components using opmnctl:
    4. cd ORACLE_HOME/admin/instancen/bin
    5. ./opmnctl stopall
    6. ./opmnctl startall
    7. Set the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS parameter in NQSConfig.INI back to NO.
    Important: You must perform this step to ensure that your system is secure.
    8. Update the Catalog element in instanceconfig.xml to remove the UpdateAccount GUIDs entry.
    9. Restart the Oracle Business Intelligence system components again using opmnctl:
    10. cd ORACLE_HOME/admin/instancen/bin
    11. ./opmnctl stopall
    12. ./opmnctl startall
    BUT THE ERROR ALSO EXISTING!
    So,waiting for the help,thanks!

    Hi,
    if your using oracle db please make sure your db settings and tnsnames.oRA settings
    also try you please try below troubleshooting steps:
    1) please check latest error message and find the root cause,
    presentation catalog log path:
    obiee installed Drive:\Oracle\Middleware\instances\instance1\diagnostics\logs\OracleBIPresentationServicesComponent\coreapplication_obips1\sawlog0.txt file
    also check it nqserver.log file
    oracle bi server log path ref:
    obiee installed Drive:\Oracle\Middleware\instances\instance1\diagnostics\logs\OracleBIServerComponent\coreapplication_obis1\nqserver.log
    2)can you try to login RPD,EM and console by using your weblogic a/c then try to login with some other user.
    if its not working then try to delete that users from catlog and check it Check OPMN services are running state.
    e.x:
    C:\Oracle\Middleware\instances\instance1\bin>opmnctl startall
    opmnctl startall: starting opmn and all managed processes...
    C:\Oracle\Middleware\instances\instance1\bin>opmnctl status
    Processes in Instance: instance1
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    coreapplication_obiccs1 | OracleBIClusterCo~ | 4992 | Alive
    coreapplication_obisch1 | OracleBIScheduler~ | 2420 | Alive
    coreapplication_obijh1 | OracleBIJavaHostC~ | 1856 | Alive
    coreapplication_obips1 | OracleBIPresentat~ | 5684 | Alive
    coreapplication_obis1 | OracleBIServerCom~ | 5232 | Alive
    3) Refresh GUIDs and Restart WebLogic and OPMN Services then try it again...still if your getting same issues then try to
    check DB(try to login and confirm) and check it RPD --> physical layer connection pool setting and try to
    view physical data.
    also paste it your latest error log message (nqserver.log and sawlog01.log message) here
    THanks
    Deva

  • Upgrade ebs Database 10G to 11G  (Os upgrade from 32 to 64)

    I have to perform the following upgrade:
    ebs Database 10G to 11G (Os upgrade from 32 to 64)
    Any information is welcome.
    Thank you in advance.
    Edited by: Atanas Cholakov on Nov 19, 2012 2:27 AM

    Please also see:
    11gR2 11.2.0.3 Database Certified with E-Business Suite
    https://blogs.oracle.com/stevenChan/entry/11gr2_11_2_0_3
    Thanks,
    Hussein

  • Oracle upgrade in Solution Manager 10g to 11g

    Dear Expert team ,
    Our Solution Manager is running  in Windows 2003  with oracle 10g .
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - Prod
    PL/SQL Release 10.2.0.2.0 - Production
    CORE    10.2.0.2.0      Production
    TNS for 32-bit Windows: Version 10.2.0.2.0 - Production
    NLSRTL Version 10.2.0.2.0 - Production
    SQL>
    Now I want to upgrade my Solution Manager 10 g to 11g .
    what oracle component  should I download  and how to upgrade 10.2.0.2.0  to  11.2.0.3.0.
    Please suggest.
    Regards
    Pooja

    Hi
    The upgrade is possible as stated in the here under note.
    Previous version (v15) of that note was even a bit more clear it is possible but version 10.2.0.4 is preferred.
    Direct upgrade from 10.2.0.2 should not be a problem, as it is even possible to have a direct upgrade from 9.2.0.8 to 11.2.0.4.
    1431793 - Oracle 11.2.0: Upgrade Scripts
    A database < 9.2.0.8 must be upgraded to 9.2.0.8 before it can be upgraded directly to 11.2.0.4.
    You should consider jumping directly to 11.2.0.4 that is the latest 11g version and the only one that will have a long term support.
    Regards
    1431797 - Oracle 11.2.0: Troubleshooting the Database Upgrade
    For a database upgrade from 10.2. to 11.2 the minimum release is 10.2.0.2. This release is not supported any more.
    1431797 - Oracle 11.2.0: Troubleshooting the Database Upgrade v15
    We strongly recommend a minimum release 10.2.0.4 for the following reasons:
    a) All SAP internal database upgrade tests have been performed with
    release 10.2.0.4. This upgrade path has been very well tested and
    is documented in the SAP Database Upgrade Guide for Oracle Release
    11.2.
    b) Oracle Database Release 10.2.0.2 is not supported any more.

  • How to join three tables and practical difference between 10g and 11g

    I want to know with example how to outer join three different tables in Oracle.
    Also if you have any website or reference for understand syntax or performance difference between 10g and 11g then please paste a link in.thanks!!

    Hi,
    897293 wrote:
    I want to know with example how to outer join three different tables in Oracle.The 3rd table comes into the result set the same way the 2nd one did:
    FROM           table_1  t1
    LEFT OUTER JOIN      table_2  t2  ON   ...
    LEFT OUTER JOIN      table_3  t3  ON   ...The join condition(s) for t3 can reference t1, or t2, or both.
    Also if you have any website or reference for understand syntax or performance difference between 10g and 11g then please paste a link in.thanks!!The main manuals all have "What's New" sections near the beginning. For example:
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/wnsql.htm#sthref5
    Hoek,
    We've missed you. Welcome back!

Maybe you are looking for

  • I bought a song to put on IDVD and the file says no original file what is going on?

    I am making a movie and bought a song to use in the background and idvd says "cannot be used because original file not located".  I can play it in itunes it went to my ipad??? this is frustrating. Ideas?

  • Write file in pda

    Hi! Find attached a file which stores two variables (x, y) in a file .txt every time the button "Run" is pressed. I don't know why, but in Pocket Pc it doesn't work: the file .txt is created correctly, but this file is empty. 0,3232     

  • Backdate to Garageband 1.4.1 on iPad 2?

    I updated Garageband for both my iPad and my Mac recently. After realizing that Garageband 10 for Mac ***** a great deal, I backdated to Garageband 6. The problem is, Garageband 2 for the iPad isn't compatible with Garageband 6 for the Mac. Is there

  • UCCX 9 web services / Stored Procedure

    I'll appreciate if you guys can help me on this...   Our application group already created automated bill payment web site.  I would like to do similar things by using UCCX 9.  When customers call, they enter Customer ID, credit card/check number and

  • Adding list based menu only once for all related pages

    Hi, I have a one level tab application. For a given tab I have 5 different pages. I would like let the end user navigate to these pages via a list region. Currently I have added to all five pages a list region and assigned the same list item to these