What Is Presentation Services Cache In Fact?

I have searched on this forum and on BI blogs but don't understand the concept of a presentation services cache clearly.
At first let tell what I need.
I have a dashboard page with prompts and report. From this report I navigate to another dashboard page with reports and several promts that have to be initialized with values from previous dashboard page. The navigation is based on PortalPageNav() function.
I created table in DB, PL/SQL function , through EVALUATE I passed parameters to PL/SQL function and wrote its into DB table.
Then I added this table in RPD and on Presentation Layer.
In Answers I get correct results.
Then I initialize the default values of prompts on a second dashboard page through 'SQL Results' and type something like this:
SELECT "Parameters"."Value" FROM "BO" WHERE "Parameters"."Name"='Param1'
1. I login and go to first dashboard page, change prompts, run report then navigate to second dashboard (it opens in new window). All prompts initialize correctly.
2. I open window with first dashboard page change prompts, run report then navigate to second dashboard again. And I see the previous values in prompts. But in a DB table I see new values.
There 2 ways for deciding this problem
1. By clearing cursor cache:
answers - administration- manage session - close all cursors
or
answers - administration- manage session - choose appropriate cursor and close it
2. By reloading second dashboard page
All ways are not convenient or user friendly.
BUT I NEED IN AUTOMATIC CLEARING OR NOT CACHING SOME PROMPTS!
I cant't write in a user's guide - for correct work you have to login as Administrator and clear cursor cache every time after changing prompts on first dashboard page or reloading second dashboard page :)
I became research this issue.
1. BI Server Cache is turned off through NQSConfig.ini
2. I began read a lot of info about Presentation Services Cache:
1) John Minkjan blog - [http://obiee101.blogspot.com/2008/11/obiee-presentation-services-cache.html]
I need no turn Presentation Services Cache or disable it.
2) [http://businessdecisionsystems.com/blog/?p=122] this article give us info about storing log records but there is no info about clearing cursors.
3) [http://hekatonkheires.blogspot.com/2010/02/obiee-10g-presentation-server-cache.html] good article about physical storing of presentation services cache but I didn't find any info on clearing some cursors
4) Nico in a blog write [http://gerardnico.com/wiki/dat/obiee/html_cache#clear_the_presentation_server_cache_without_stopping_and_restarting_the_services] that Presentation Services Cache is a HTML cache but he don't say how clean the entries without clicking on 'Close All Cursors' button.
5) In this topic presentation cache refresh in prompt the same problem and no answer :(
6) The user10203008 in a topic To pass new session variable value to stored proc before running a report. has the same issue but all advices about BI Server Cache. He found solution but it is disable whole Presentation Services Cache. I need clear ONLY SOME CURSORS.
So, I have a answer!
DOES ANYBODY KNOW WHERE IS STORING DATA ABOUT CURSORS ON A PAGE ANSWERS - ADMINISTRATION - MANAGE SESSION ?
May be somebody knows a developer of Siebel Analytics or may be he is on a forum and tell us how realized a clearing some cursors in a automatic mode?
Edited by: AnTonic on Jan 28, 2011 7:17 PM
Edited by: AnTonic on Jan 28, 2011 7:18 PM
Edited by: AnTonic on Jan 28, 2011 7:20 PM

I found a solution.
I decide to emulate a pressing button 'Refresh' at the end of a page. So I look at a html code of Dashboard page and found a corresponding javascript function. It is RefreshPage('saw.dll?Dashboard&PortalPath=<PortalPath>&Page=<PagePath>')So I trying to create a text box with HTML Markup option and enter RefreshPage on onload() function. But then I got a cycle: open dashboard page -> onload() -> RefreshPage() -> onload() -> RefreshPage() -> ...
So I decide to find a code of this function. The function code is in %SAROOTDIR%\web\app\res\b_mozilla\dashboards\portalscript.js
// force cache refresh
function RefreshPage(sCmd)
   var viewStateDiv = document.getElementById("idViewStateDiv");
   if (viewStateDiv)
      sCmd += "&Action=RefreshAll";
      sCmd += "&ViewState=" + viewStateDiv.getAttribute("stateID");
      sCmd += "&StateAction=samePageState";
   window.location.replace(sCmd);
   return false;
}We may see that for refreshing page the Action='RefreshAll' is used. So we need pass this Action.
I wrote in a first post that I was using PortalPageNav() javascript function for navigation. So I created my custom CustomPortalPageNav() function which is based on original PortalPageNav() code with one new parameter 'sAction'. So I pass a value 'RefreshAll' through this parameter and it works!

Similar Messages

  • Bypass presentation services cache

    For some of my reports, I don't want to use cache entries. How do i achieve this?
    I am trying to use "By Pass Oracle BI Presentation services Cache" in advanced tab. But its not working. Is this same as BI server cache or something else. what is the use of that check box
    thanks

    I think that checkbox lets you bypass the cursor cache (i.e. what you see in Administration > Manage Sessions), meaning the request will always be submitted to the BI server. It does not bypass the server cache though.
    You should be able to achieve that by putting the current datetime or a random number into your report as a hidden column to ensure the request doesn't match any existing cache entry.
    You can also untick the "cacheable" check box on the table(s) in RPD physical layer, if that works for your requirement.

  • Purging Presentation Services Cache

    Hi All,
    Do we have any mechanism to purge the Presentation Services Cache manually like we do for BI Server cache at the time of updating database tables?
    Thanks,
    -Vency

    Vency,
    Are you implying that there are separate caches for presentation services and the bi server? If so, that may explain some of the strange caching issues I'm seeing.

  • Presentation Services Cache

    Hi all,
    I'm trying to figure out the purpose of Presentation Services Cache. Someone can give some examples of this usage/benefits for the Answers user?
    Thanks in advance
    Vagner

    As per my limited understanding:
    web cache stores information similar to internet temp files so that query is satisfied at web server level itself to reduce load on intelligence server. By default it remains for 1 hour.

  • Presentation service caching (in prompt dropdowns)

    I am implementing a BI application to execute reports on some fast-changing databases. To avoid the risk of stale data, I have disabled caching in BI, but there seems to be a different cache underlying the prompts which has not been disabled. I have a series of drop downs which must always be an immediate reflection of the database, and instead it is clear that these drop downs are based on cached data. Does anyone know how this cache is managed?
    I believe the presentation service is responsible for this cache, which I would like to disable. Is there an interface to control this behavior?

    Is oc4j running? otherwise start it form Start>All Programs>Oracle Business Intelligence>Start OC4J.
    Then start Presentation services (sawserver.exe in the OracleBI/web/bin directory or from Control Panel>Administrative tools> Services
    Then try the wbe URL

  • Any relationship between bi server cache and bi presentation service cache?

    If I disable the bi server cache from the EM and the physical table's cache is also disabled, will bi presentation service's cache still work?
    I found that,after doing that I can't get the ns*xxxx.tmp file at all :(. Or any other reasons I can't cache the presentation services layer's cache?
    br.
    /michael

    Presentation server is the dashboard tool, it create HTML page and its cache is then an HTML cache. It retrieve an HTML page of the dashboard if the page is not really old.
    More ...
    http://gerardnico.com/wiki/dat/obiee/presentation_service/obiee_cache_presentation_service
    The BI server retrieve the data from several data sources and give them to the presentation server. Then the BI server cache is a data set cache. It store the result of the SQL and don't ask again to the data source (database for instance).
    More ...
    http://gerardnico.com/wiki/dat/obiee/bi_server/cache/
    Cheers
    NIco

  • How to delete the cache from Presentation Services(Web UI)

    Hi,
    How to delete the cache from Presentation Services(Web UI) and from rpd also.

    Hi,
    For Presentation services cache refer : http://gerardnico.com/wiki/dat/obiee/presentation_service_cache
    For RPD Cache :
    Admin tool(rpd) > Manage > Cache > Action > Purge
    or check following links
    http://gerardnico.com/wiki/dat/obiee/event_table
    http://oraclebi.blog.com/automating-cache-purging-without-using-obiee-scheduler/
    cheers
    Aravind

  • Presentation server cache

    Hi guys
    How can i clear presentation service cache manually ?
    regards

    Navigate to Administration ==> Manage Session, here you will find a button named Close All Cursors. Click it to Purge the Presentation Services Cache.
    Note: It will purge all the cursors cached in it.

  • How we can make use of cache management using presentation services

    hi all
    how we can make use of cache management using presentation services
    Thanks
    Sreedhar

    hi
    i have one small question,
    first time i have submitted a report and the data has come from database, second i have interchange the cols like col1 to col2 and col2 to col1 and i did col1/col2 will it comes from cache or will it come from database(my question is that any in memory calculations will be done by cache )
    Thanks
    Sreedhar

  • XPERIA Z -What kind of service/SUPPORT standards do you have? Is there any at all?

    Hi guys. Hello sony mobile people. My name is Isaiah and I'm from Manila, Philippines. I am a solid sony fan boy for morethan 10 years now (mobile phones). Or maybe was a solid sony fan boy. Not until yesterday happened. 12/17/2013. 
    I heavily supported sony mobile products back when it was still sony ericsson. From the K-models, to vivaz, and up until to the xperia. I even strongly recommend it to my friends and family and keep persuading them to switch to a sony mobile device because of its outstanding design, features, and solid build quality. And I'm always excited when there is a new model or flagship mobile device to be released by sony. Correct me if I'm wrong but the engineers I guess were hurrying up to put out this new waterproof mobile devices out there without carefully checking, testing, and making sure that your phones are absolutely what they say they are. 
    I'm a chef. I work in the kitchen. Some Eight years ago I was working in the kitchen with my newly acquired sony phone, the k700i to be exact. I was very proud of it for it was my very first coloured phone with camera. I kept it inside the chest pocket of my Chef's jacket when suddenly I reached out on an Ice Chest full of cold water, and as i leaned to reach out for a bucket of ice, my unconcious mind forgot about the law of gravity. So the phone eventually and immediately slipped outside my pocket and went directly inside of the ice chest and fully submerged in very cold water. It was turned on and on standby mode. No matter how fast I reacted to retrieve it from the ice cold water it was already too late. By the moment I had it the screen was fully black. No power button could even wake it up. Long story short, the phone died right then and there. It wasnt waterproof and it was totally my fault. I took some time for me to move on for that was a very expensive device back then. It was such a loss. 
    After that incident I kept on wishing that one day sony would make a device which is waterproof or something that would be able to withstand the heat, the chaos, the wet, the dirty, and the sticky environment of the kitchen. Years have passed and now I have my own restaurant. Cooking even more, staying even more longer inside the kitchen. One of my very favorites was the Xperia Arc S. I bought two, one white and one black. My friends thought it was weird and stupid of me to get two units of the same brand and model. I say it was the obsession to have nice things that lead me to have both, it made me happy.  And finally Sony releases the Xperia Z. 
    It was the ultimate dream come true.
    I bought two units in an instant. One for me and one for my fiancee who also works in the kitchen. 
    We loved it. And everything about it. It suited our lifestyle perfectly. Great photos, internet connectivity, water proof, great size, and extremely good looking. 
    Not until her phone started to charge in a funny manner. The phone just wont charge 100% it would stop at around 54% and never reach anything beyond it. We didnt mind for as long as we had hopes it would go back to normal. 
    Then after a week. It wouldnt charge anymore until the battery went 0%. It died. 
    Then charging it was useless. It wont charge at all. We left it on the charger for 30 minutes. An hour. Three hours. Still nothing. We tried all trouble shooting provided by the sony website. Still nothing. 
    I checked for the pink and red discoloration indicators on all ports. The one on top with the earphone jack was pink. And we never even went to a pool or submerged it under water. The last time it got wet was due to wiping it clean using a wetwipes. 
    and all ports were always closed properly. The only time we open it is when we charge it. So it is a total mystery to us how the water got in. Could it be the defect came from the plug of the port itself?  Probably. Or our unit was poorly made. 
    I went to the sony mobile center here in our country to have them fix it and check it. It seems like the problem of my phone was hardware according to them. And they suggest that I just purchase a new unit because there is no way to fix our unit anymore. 
    Oh my god. This phone aint even half a year old and they want me to buy a new one just because fixing it would amount to the price of a new one. As if its that easy to buy a new one. I feel like I have been scammed big time. The phone doesnt even have bumps or scrathces at all because of protective casings and it just died like that. Like it had a heart attack and can no longer be revived. 
    The customer support really surprised me. It was as if they were very used to answering it that way because maybe I wasn't the first one to have that kind of problem. And by the way I bought my fiancee a Xperia Z Ultra the day the xperia z died. Im planning to surprise her with it for christmas. But I just got depressed with this incident. I mean I am making Sony Mobile rich because I keep buying your products and in return when I, the customer, needs help or reasoning, repair, or any positive promises from you this is what I get. You tell me to just buy another one. Because youre too proud to tell in my face that your product is not defective at all and the fault is mine. And you wouldn't do anything about it. 
    You see, the trust that I had with your company for a very long time took years to build. My loyalty to the brand is just so solid. 
    And it took just one defective model to ruin it. One reasonless suggestion of go ahead and just buy another one as if it costs less than a dollar. Warranty? What for? You wont even listen to your cutomers around the world. More like buy at your own risk, or buy our products because you are filthy rich and when a defective one catches you just buy another one coz money dont cost a thing.  So to the engineers. Don't say that it is waterproof if it really aint. have you really even tried testing it on all different scenarios? Really? I just hope the Z ultra I purchased wont die as well. If it does. I'll start telling and suggesting everyone in my community to beware of your products. You can't even fix your own ceations properly and in a humanely manner. It is not as if my phone blew up.
    You know what is more annoying is the fact that important information, pictures, files, videos, and numbers can never be retrieved on that xperia z. And that is the priceless part. And i am surprised that you guys can't really do anything about it. Xperia is experience right? I guess its true what they say. Experience Zzzzz.... it will now be sleeping forever.
    Word of advice. Please. Learn how to take care of your customers. Especially the loyal ones. They are one of the major reasons why other people are switching to your brand. When left unsatisfied, they can also do otherwise. Thank you for wasting my money. make believe. sure
    Solved!
    Go to Solution.

    Yes I cannot deny the fact that errors and flaws are always present in such mobile devices due to extremely large or volume productions. But then again. We are paying customers who expect nothing but seamless service and performance that is why we pay premium for something premium. From what I see this warranties are not guarantees at all. We pay a lot so we expect a lot. We deserve respect. The company could at least hire a real mobile technician, as if they can't afford to hire one. 
    We can consider but only to a certain point. But matters like this wherein priceless information is lost, unretrievable, and more important information stored on the phone memory they could at least be more dependable in giving back to you. 
    From what I have read form other complains regarding this similar topic, Xperia Care is not doing anything at all, instead they answer like robots with the same messages and solutions that don't even work at all. And they said they have admins here who monitors everything all the time. To answer our queries. But I guess my plead is a good example of the kind of actions they are trying to do, they are doing nothing at all. They should name this place Xperia Don't Care or maybe they just forgot to place the Don't part. 
    This is hard earned money that I used to buy their products, blood, sweat, and sleepless working nights just to buy their products. By the looks of it they are treating their products as a disposable one. Something that would not last for half or one fourth of a lifetime. This kind of dissapointment that I have will keep on growing and other customers dissapointment will grow stroger as well. In due time it will lead to the failure of the whole brand of the mobile giant. This company does not understand that it will only take a spark to set the whole angry and unsatisfied customers on fire towards the brand name.  
    They keep claiming stuff, it feels like they are just scamming the customers of their hard earned money to buy something defective and disposable. Let us see on how they could cope up with social media, exposing how damaging their products are and how they treat their customers when a defective item comes up. 

  • OPMN Presentation Service

    Hi,
    Really stumped with what to do with this one now,
    i cant get the BI Presenation Service to come up start with the basics run
    opmnctl startall
    Processes in Instance: instance1
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    coreapplication_obiccs1 | OracleBIClusterCo~ | 28985 | Alive
    coreapplication_obisch1 | OracleBIScheduler~ | 28984 | Alive
    coreapplication_obijh1 | OracleBIJavaHostC~ | 28981 | Alive
    coreapplication_obips1 | OracleBIPresentat~ | N/A | Down
    coreapplication_obis1 | OracleBIServerCom~ | 28983 | Alive
    opmnctl startproc ias-component=coreapplication_obips1
    But this error out...
    $ opmnctl startproc ias-component=coreapplication_obips1
    opmnctl startproc: starting opmn managed processes...
    ================================================================================
    opmn id=v10emzs130:9501
    0 of 1 processes started.
    ias-instance id=instance1
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    coreapplication_obips1/OracleBIPresentationServicesComponent/coreapplication_obips1/
    Error
    --> Process (index=1,uid=383610103,pid=29137)
    failed to start a managed process after the maximum retry limit
    Log:
    /obiauat1/apps/obiee/MWHome/instances/instance1/diagnostics/logs/OracleBIPresentationServicesComponent/coreapplication_obips1/console~coreapplication_obips1~1.log
    The logs above tell you nothing just show the process trying to start, took a look at the opmn.log and found the below
    [2013-01-03T13:49:48][opmn][TRACE:1][][OPMN]Ping failed in Ready callback for proc:1172789985
    [2013-01-03T13:49:50][opmn][TRACE:1][][OPMN][code:libopmncustom]Process Ping Failed: coreapplication_obips1~OracleBIPresentationServicesComponent~coreapplication_obips1~1 (1172789985:21153) [No addresses matched the properties for the request.]
    [2013-01-03T13:49:50][opmn][TRACE:1][][OPMN][code:libopmncustom]Process Ping Failed: coreapplication_obips1~OracleBIPresentationServicesComponent~coreapplication_obips1~1 (1172789985:21153)
    And this is where my issue lies, ive tried a full reboot of the box twice just in case there was a process hanging somewhere still no luck, I replaced instanceconfig.xml with the working backup that was taken yesterday morning but still the error persist
    Does anyone have any ideas, I can produce logs and any other information that will help                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    **NQServer.log**
    $ tail -300 nqserver-20130103-1531.log
    [2013-01-03T14:46:59.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 1] [36007] Loading repository /obiauat1/apps/obiee/MWHome/instances/instance1/bifoundation/OracleBIServerComponent/coreapplication_obis1/repository/OracleBIAnalyticsAppsEBD3_BI0103.rpd.
    [2013-01-03T14:47:49.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 4c] [14055] Loading subject area: Usage Tracking ...
    [2013-01-03T14:47:49.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 4b] [14055] Loading subject area: Core ...
    [2013-01-03T14:47:49.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 4c] [14056] Finished loading subject area: Usage Tracking.
    [2013-01-03T14:48:01.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 4b] [15045] All physical tables in logical table source 'Dim - Purchase Order Attributes'.'Fact_W_PURCH_ORDER_F' must be join connected.
    [2013-01-03T14:48:05.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 4b] [14056] Finished loading subject area: Core.
    [2013-01-03T14:48:06.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 39] [16020] Metadata Database Type: Oracle 11g [[
    Data Source Name: UAT1
    Data Source Type: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64b
    [2013-01-03T14:48:06.000+00:00] [OracleBIServerComponent] [WARNING:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 1] [nQSError: 43123] Query log for some users are enabled, performance may decreased
    [2013-01-03T14:48:06.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 39] [16020] Metadata Database Type: Oracle 10g R2 [[
    Data Source Name: U020
    Data Source Type: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64b
    [2013-01-03T14:48:10.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 39] [16020] Metadata Database Type: Oracle 9i [[
    Data Source Name: UAT1
    Data Source Type: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [2013-01-03T14:48:11.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 1] [85003] MDX Member Name Cache subsystem started successfully.
    [2013-01-03T14:48:11.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 1] [85004] MDX Member Name Cache subsystem recovered entries: 0, size: 0 bytes.
    [2013-01-03T14:48:17.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 1] nqsserver: Clustered Oracle BI Server (64-bit) started. Version: 11.1.1.5.0.120326.0122.000.
    [2013-01-03T14:48:18.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 9a0] [43071] A connection with Cluster Controller v10emzs130:9706 was established.
    [2013-01-03T15:27:59.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 99b] [nQSError: 46066] Operation cancelled.
    [2013-01-03T15:27:59.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 9a0] [nQSError: 46066] Operation cancelled.
    [2013-01-03T15:28:00.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 1] [43031] : Oracle BI Server shutdown.
    [2013-01-03T15:28:09.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 1] [85008] MDX Member Name Cache subsystem statistics - Entries: 0, Sizes: 0 bytes, Overall Queries: 0, Hits: 0(0%), Misses: 0(0%).
    [2013-01-03T15:28:09.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 1] [85007] MDX Member Name Cache subsystem stopped.
    [2013-01-03T15:28:17.000+00:00] [OracleBIServerComponent] [NOTIFICATION:1] [] [] [ecid: 00089d0jBfGFS8R6yZrY6G00074r000000] [tid: 1] [14058] Unloaded all subject areas.
    Sawlog
    $ tail -300 sawlog4.log
    saw.taskScheduler.shutdown
    ecid:
    [2013-01-03T15:31:49.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.wait] [ecid: 00089fXA44qFS8R6yZrY6G0000l7000000,0] [tid: 5] Leaving condition wait. Condition var: 4309614992. Timeout: 5000[[
    File:conditionwait.cpp
    Line:96
    Location:
    saw.threads.syncobjs.conditionwait.wait
    saw.taskScheduler
    saw.threads
    ecid: 00089fXA44qFS8R6yZrY6G0000l7000000,0
    ThreadID: 5
    [2013-01-03T15:31:49.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.signal] [ecid: 00089fXA44qFS8R6yZrY6G0000l7000000,0] [tid: 5] Signaling condition var: 4309614920.[[
    File:conditionwait.cpp
    Line:134
    Location:
    saw.threads.syncobjs.conditionwait.signal
    saw.taskScheduler
    saw.threads
    ecid: 00089fXA44qFS8R6yZrY6G0000l7000000,0
    ThreadID: 5
    [2013-01-03T15:31:49.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.wait] [ecid: ] [tid: ] Leaving condition wait. Condition var: 4309614920. Timeout: 60000[[
    File:conditionwait.cpp
    Line:96
    Location:
    saw.threads.syncobjs.conditionwait.wait
    saw.taskScheduler.shutdown
    ecid:
    [2013-01-03T15:31:49.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.signal] [ecid: ] [tid: ] Signaling condition var: 4309598792.[[
    File:conditionwait.cpp
    Line:149
    Location:
    saw.threads.syncobjs.conditionwait.signal
    saw.threadpool.shutdown
    saw.taskScheduler.shutdown
    ecid:
    [2013-01-03T15:33:26.000-00:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 120325.0800 BP2 64-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
    saw.sawserver
    ecid:
    [2013-01-03T15:33:29.000-00:00] [OBIPS] [TRACE:1] [] [saw.webextensionbase.init] [ecid: ] [tid: ] The Oracle BI Presentation Services server is proudly running under user: TODO_implement_this[[
    File:webextensionbase.cpp
    Line:535
    Location:
    saw.webextensionbase.init
    saw.sawserver
    ecid:
    [2013-01-03T15:33:30.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.wait] [ecid: 00089fbFBtSFS8R6yZrY6G0000nI000000,0] [tid: 5] Entering condition wait. Condition var: 4309614992. Timeout: 5000[[
    File:conditionwait.cpp
    Line:88
    Location:
    saw.threads.syncobjs.conditionwait.wait
    saw.taskScheduler
    saw.threads
    ecid: 00089fbFBtSFS8R6yZrY6G0000nI000000,0
    ThreadID: 5
    [2013-01-03T15:33:30.000-00:00] [OBIPS] [TRACE:1] [] [saw.catalog.local.readObject] [ecid: ] [tid: ] Path not found (/system/version)[[
    File:localwebcatalog.cpp
    Line:1176
    Location:
    saw.catalog.local.readObject
    saw.catalog.local.checkforcatalogupgrade
    saw.catalog.local.loadCatalog
    saw.subsystems.catalogbootstrapper.loadcatalog
    saw.webextensionbase.init
    saw.sawserver
    ecid:
    [2013-01-03T15:33:30.000-00:00] [OBIPS] [ERROR:16] [] [saw.catalog.local.checkforcatalogupgrade] [ecid: ] [tid: ] No catalog version file found or unable to read the version file. Upgrade necessary[[
    File:localwebcatalog.cpp
    Line:161
    Location:
    saw.catalog.local.checkforcatalogupgrade
    saw.catalog.local.loadCatalog
    saw.subsystems.catalogbootstrapper.loadcatalog
    saw.webextensionbase.init
    saw.sawserver
    ecid:
    [2013-01-03T15:33:30.000-00:00] [OBIPS] [ERROR:10] [] [saw.catalog.local.checkforcatalogupgrade] [ecid: ] [tid: ] Upgrading Catalog is required.[[
    File:localwebcatalog.cpp
    Line:176
    Location:
    saw.catalog.local.checkforcatalogupgrade
    saw.catalog.local.loadCatalog
    saw.subsystems.catalogbootstrapper.loadcatalog
    saw.webextensionbase.init
    saw.sawserver
    ecid:
    [2013-01-03T15:33:30.000-00:00] [OBIPS] [ERROR:1] [] [saw.catalog.local.loadCatalog] [ecid: ] [tid: ] Error initializing/loading existing Catalog: /obiauat1/apps/obiee/MWHome/instances/instance1/bifoundation/OracleBIPresentationServicesComponent/coreapplication_obips1/catalog/EnterpriseBusinessAnalytics.
    Upgrading Catalog is required.[[
    File:localwebcatalog.cpp
    Line:258
    Location:
    saw.catalog.local.loadCatalog
    saw.subsystems.catalogbootstrapper.loadcatalog
    saw.webextensionbase.init
    saw.sawserver
    ecid:
    [2013-01-03T15:33:31.000-00:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
    saw.sawserver
    ecid:
    [2013-01-03T15:33:31.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.signal] [ecid: ] [tid: ] Signaling condition var: 4309614992.[[
    File:conditionwait.cpp
    Line:134
    Location:
    saw.threads.syncobjs.conditionwait.signal
    saw.taskScheduler.shutdown
    ecid:
    [2013-01-03T15:33:31.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.wait] [ecid: ] [tid: ] Entering condition wait. Condition var: 4309614920. Timeout: 60000[[
    File:conditionwait.cpp
    Line:88
    Location:
    saw.threads.syncobjs.conditionwait.wait
    saw.taskScheduler.shutdown
    ecid:
    [2013-01-03T15:33:31.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.wait] [ecid: 00089fbFBtSFS8R6yZrY6G0000nI000000,0] [tid: 5] Leaving condition wait. Condition var: 4309614992. Timeout: 5000[[
    File:conditionwait.cpp
    Line:96
    Location:
    saw.threads.syncobjs.conditionwait.wait
    saw.taskScheduler
    saw.threads
    ecid: 00089fbFBtSFS8R6yZrY6G0000nI000000,0
    ThreadID: 5
    [2013-01-03T15:33:31.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.signal] [ecid: 00089fbFBtSFS8R6yZrY6G0000nI000000,0] [tid: 5] Signaling condition var: 4309614920.[[
    File:conditionwait.cpp
    Line:134
    Location:
    saw.threads.syncobjs.conditionwait.signal
    saw.taskScheduler
    saw.threads
    ecid: 00089fbFBtSFS8R6yZrY6G0000nI000000,0
    ThreadID: 5
    [2013-01-03T15:33:31.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.wait] [ecid: ] [tid: ] Leaving condition wait. Condition var: 4309614920. Timeout: 60000[[
    File:conditionwait.cpp
    Line:96
    Location:
    saw.threads.syncobjs.conditionwait.wait
    saw.taskScheduler.shutdown
    ecid:
    [2013-01-03T15:33:31.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.signal] [ecid: ] [tid: ] Signaling condition var: 4309598792.[[
    File:conditionwait.cpp
    Line:149
    Location:
    saw.threads.syncobjs.conditionwait.signal
    saw.threadpool.shutdown
    saw.taskScheduler.shutdown
    ecid:
    [2013-01-03T15:33:41.000-00:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services (OBIPS) 11.1.1.5.0 (Build 120325.0800 BP2 64-bit) are starting up.[[
    File:sawserver.cpp
    Line:465
    Location:
    saw.sawserver
    ecid:
    [2013-01-03T15:33:44.000-00:00] [OBIPS] [TRACE:1] [] [saw.webextensionbase.init] [ecid: ] [tid: ] The Oracle BI Presentation Services server is proudly running under user: TODO_implement_this[[
    File:webextensionbase.cpp
    Line:535
    Location:
    saw.webextensionbase.init
    saw.sawserver
    ecid:
    [2013-01-03T15:33:45.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.wait] [ecid: 00089fc8DdQFS8R6yZrY6G0000oT000000,0] [tid: 5] Entering condition wait. Condition var: 4309614992. Timeout: 5000[[
    File:conditionwait.cpp
    Line:88
    Location:
    saw.threads.syncobjs.conditionwait.wait
    saw.taskScheduler
    saw.threads
    ecid: 00089fc8DdQFS8R6yZrY6G0000oT000000,0
    ThreadID: 5
    [2013-01-03T15:33:45.000-00:00] [OBIPS] [TRACE:1] [] [saw.catalog.local.readObject] [ecid: ] [tid: ] Path not found (/system/version)[[
    File:localwebcatalog.cpp
    Line:1176
    Location:
    saw.catalog.local.readObject
    saw.catalog.local.checkforcatalogupgrade
    saw.catalog.local.loadCatalog
    saw.subsystems.catalogbootstrapper.loadcatalog
    saw.webextensionbase.init
    saw.sawserver
    ecid:
    [2013-01-03T15:33:45.000-00:00] [OBIPS] [ERROR:16] [] [saw.catalog.local.checkforcatalogupgrade] [ecid: ] [tid: ] No catalog version file found or unable to read the version file. Upgrade necessary[[
    File:localwebcatalog.cpp
    Line:161
    Location:
    saw.catalog.local.checkforcatalogupgrade
    saw.catalog.local.loadCatalog
    saw.subsystems.catalogbootstrapper.loadcatalog
    saw.webextensionbase.init
    saw.sawserver
    ecid:
    [2013-01-03T15:33:45.000-00:00] [OBIPS] [ERROR:10] [] [saw.catalog.local.checkforcatalogupgrade] [ecid: ] [tid: ] Upgrading Catalog is required.[[
    File:localwebcatalog.cpp
    Line:176
    Location:
    saw.catalog.local.checkforcatalogupgrade
    saw.catalog.local.loadCatalog
    saw.subsystems.catalogbootstrapper.loadcatalog
    saw.webextensionbase.init
    saw.sawserver
    ecid:
    [2013-01-03T15:33:45.000-00:00] [OBIPS] [ERROR:1] [] [saw.catalog.local.loadCatalog] [ecid: ] [tid: ] Error initializing/loading existing Catalog: /obiauat1/apps/obiee/MWHome/instances/instance1/bifoundation/OracleBIPresentationServicesComponent/coreapplication_obips1/catalog/EnterpriseBusinessAnalytics.
    Upgrading Catalog is required.[[
    File:localwebcatalog.cpp
    Line:258
    Location:
    saw.catalog.local.loadCatalog
    saw.subsystems.catalogbootstrapper.loadcatalog
    saw.webextensionbase.init
    saw.sawserver
    ecid:
    [2013-01-03T15:33:45.000-00:00] [OBIPS] [NOTIFICATION:1] [] [saw.sawserver] [ecid: ] [tid: ] Oracle BI Presentation Services are shutting down.[[
    File:sawserver.cpp
    Line:712
    Location:
    saw.sawserver
    ecid:
    [2013-01-03T15:33:46.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.signal] [ecid: ] [tid: ] Signaling condition var: 4309614992.[[
    File:conditionwait.cpp
    Line:134
    Location:
    saw.threads.syncobjs.conditionwait.signal
    saw.taskScheduler.shutdown
    ecid:
    [2013-01-03T15:33:46.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.wait] [ecid: ] [tid: ] Entering condition wait. Condition var: 4309614920. Timeout: 60000[[
    File:conditionwait.cpp
    Line:88
    Location:
    saw.threads.syncobjs.conditionwait.wait
    saw.taskScheduler.shutdown
    ecid:
    [2013-01-03T15:33:46.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.wait] [ecid: 00089fc8DdQFS8R6yZrY6G0000oT000000,0] [tid: 5] Leaving condition wait. Condition var: 4309614992. Timeout: 5000[[
    File:conditionwait.cpp
    Line:96
    Location:
    saw.threads.syncobjs.conditionwait.wait
    saw.taskScheduler
    saw.threads
    ecid: 00089fc8DdQFS8R6yZrY6G0000oT000000,0
    ThreadID: 5
    [2013-01-03T15:33:46.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.signal] [ecid: 00089fc8DdQFS8R6yZrY6G0000oT000000,0] [tid: 5] Signaling condition var: 4309614920.[[
    File:conditionwait.cpp
    Line:134
    Location:
    saw.threads.syncobjs.conditionwait.signal
    saw.taskScheduler
    saw.threads
    ecid: 00089fc8DdQFS8R6yZrY6G0000oT000000,0
    ThreadID: 5
    [2013-01-03T15:33:46.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.wait] [ecid: ] [tid: ] Leaving condition wait. Condition var: 4309614920. Timeout: 60000[[
    File:conditionwait.cpp
    Line:96
    Location:
    saw.threads.syncobjs.conditionwait.wait
    saw.taskScheduler.shutdown
    ecid:
    [2013-01-03T15:33:46.000-00:00] [OBIPS] [TRACE:1] [] [saw.threads.syncobjs.conditionwait.signal] [ecid: ] [tid: ] Signaling condition var: 4309598792.[[
    File:conditionwait.cpp
    Line:149
    Location:
    saw.threads.syncobjs.conditionwait.signal
    saw.threadpool.shutdown
    saw.taskScheduler.shutdown
    ecid:
    ]]

  • Deleted user able to login to Oracle BI Publisher Web, Presentation Service

    Hi All,
    i have chosen "Oracle BI Server" as my security model and everything is working fine, i had to delete a user, i deleted the user from RPD, deleted user from Presentation services from "Manage Presentation catalog users and groups" and restarted services: Oracle BI Server, Oracle Presentation server, Oracle Java Host, OC4J.
    after restart i am able to login into both presentation services and Oracle BI Publisher web, do i need to do anything more to restrict access to the deleted users.
    Thanks and Regards,
    Sreekanth.

    If you are using BI Server for the security, then it is maintaining the users and what they can get to. You might clear browser caches and ensure you bounce the BIP server.
    Tim

  • Unable to login to presentation services after doing the upgrade 10g to 11g

    Hi All,
    I had a running instance of OBIEE 11g 11.1.1.6.0, my 11g rpd and webcatlog was working fine. Imp to note is that, I had configured external LDAP authenticator and wasn't using the weblogic embedded LDAP.
    Now, today, I had to updrage 10g RPD and Webcatlog to 11g and merge into the my current 11g system. I ran the upgrade utitlity and it completed the upgrade successfully but now when I try to login into presentation services using the weblogic user, the presentation services gets hung. It doesn't even give me a message like "Invalid login or password" I DON't get any message but my Presentation services and RPD gets hung( when I try to open it online)
    Also, I am trying to refresh the GUIDs after making the necessary changes in the config and instanceconfig.xml file i start the obi server and presentation server, it doesn't come up. So I am unable to refresh my GUIDs
    What could be issue here? Do I need to fix an credential file? Please let me know.
    Thanks,
    Ronny

    Ronny wrote:
    Hi All,
    I had a running instance of OBIEE 11g 11.1.1.6.0, my 11g rpd and webcatlog was working fine. Imp to note is that, I had configured external LDAP authenticator and wasn't using the weblogic embedded LDAP. Was LDAP access working fine before upgrading the 10g rpd and webcat?
    Now, today, I had to updrage 10g RPD and Webcatlog to 11g and merge into the my current 11g system. I ran the upgrade utitlity and it completed the upgrade successfully but now when I try to login into presentation services using the weblogic user, the presentation services gets hung. It doesn't even give me a message like "Invalid login or password" I DON't get any message but my Presentation services and RPD gets hung( when I try to open it online)What do the logs say?
    Also, I am trying to refresh the GUIDs after making the necessary changes in the config and instanceconfig.xml file i start the obi server and presentation server, it doesn't come up. So I am unable to refresh my GUIDsWhen you say doesn't come up, do you mean the services are down? If yes, what do the logs say about this?

  • OBIEE 11G - Unable to login to presentation services

    Hi All,
    I have done a simple installation of OBIEE 11G on my coloud server with OS windows server 2003, SP2 , 32 bit.
    Installation is 88% completed with,
    Executing : opmnctl start coreapplication_obiccs1 and Executing: opmnctl start coreapplication_obips1 failed. Came to know that this is related to clusters and ignored the error.
    RCU is installed in different database server.
    Now i am trying to login to presentation services with weblogic as userid and password that i had given during installation of obi.
    I am getting error that userid or password is invalid...
    One thing i came to know from the thread OBIEE 11g Cluster Controller Failed to start is,
    i have a bad IP in /etc/hosts... below are the entries in the file... can anyone please tell me what necessary changes i should do?
    # Copyright (c) 1993-1999 Microsoft Corp.
    # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    # This file contains the mappings of IP addresses to host names. Each
    # entry should be kept on an individual line. The IP address should
    # be placed in the first column followed by the corresponding host name.
    # The IP address and the host name should be separated by at least one
    # space.
    # Additionally, comments (such as these) may be inserted on individual
    # lines or following the machine name denoted by a '#' symbol.
    # For example:
    # 102.54.94.97 rhino.acme.com # source server
    # 38.25.63.10 x.acme.com # x client host
    127.0.0.1 localhost
    Regards,
    srl

    HI Srini,
    Thanks for the response,
    I can able to logic Obiee Em/Console services with the same user Web logic. Only Presentation services not able to login.
    Please find my  sawlog0:
    [2014-01-08T19:54:52.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.checkauthentication.runimpl] [ecid: f86ee0615f1822d9:694c3368:14372397042:-8000-00000000000002fd,0:1:1] [tid: 3400] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004.  Code: 10018.  [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:checkauthentication.cpp
    Line:1330
    Location:
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool.asynclogon
      saw.threads
    ecid: f86ee0615f1822d9:694c3368:14372397042:-8000-00000000000002fd,0:1:1
    ThreadID: 3400
    Please advice
    Regards,
    Kulkarni

  • How to set up presentation service group based on groups defined in LDAP

    Hello guys
    we have successfully implemented LDAP authentication, and we imported 5 groups from LDAP to BI server. However, these 5 groups and their members are not displaying on presentation server under presentation catalog group, it still only has two groups "everyone" and "admin"..
    To manuelly create these 5 groups and members will be too much work, so what can I do to get these 5 groups and members on presentation service with the proper data level security defined in admin tool?
    Please advice
    Thanks

    Have you created an Init Block to populate the GROUP variable? See the following post:
    http://oraclebizint.wordpress.com/2007/10/12/oracle-bi-ee-101332-and-oid-user-and-group-phase-2/

Maybe you are looking for

  • NEW 9iAS PORTAL UPGRADE SCRIPTS NOW AVAILABLE

    Based on detailed customer and internal feedback, Oracle9iAS Portal Product Development is now making available NEW and significantly IMPROVED versions of the 9iAS Portal Upgrade Scripts as of 4/20/2001. [list] [*]Oracle9iAS Portal Upgrade Scripts (2

  • My data comes up blank in PDF bank statements and employer W2s (ASP)

    When I try to download bank statements (actually, today it's my W2 form from ADP's craptastic "Payroll Work Center") an ASP file is downloaded to my desktop. It opens up in Prieview, but aside from the form itself, the data fields are blank. I've tri

  • My new MacBook Pro 15" Retina freezes- any help?

    No fun with my new Apple product. Almost every day I find my keyboard and trackpad locked during work. I've put it away for now and work only with my iMac. Is there some hope to get this nasty behaviour cured through a firmware- or software patch? Th

  • IOS 5 OTA: Device query for mac address

    Device query for attribute "MAC_ADDRESS_EN0" doesn't return any value on iOS 5. It use to work fine on iOS 4. Does anyone know the new attribute to query mac address on iOS 5. Appreciate any help. Thanks, Juzer.

  • How can I resize the PDF I created with a magazine template?

    Hello! I used a template that`s a different size than what I need. How can I resize (make it smaller) the PDF that I just created with this magazine template?