Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Comments
-
Hi, Google is often helpful too .... First result is a reference to a thread here on OTN: Can anyone explain, crawlersys.lck on Web Catalog? Which ask the same thing and provide an answer. The filename "crawler" is a reference to a crawler parsing and indexing thing. So don't copy it and depending the settings on the new…
-
The key point is: forget the "cloud" cover of OAC, underneath it's at 95% the good (maybe not for everybody) old OBIEE (95% only because there are some new deployment scripts for the cloud side of things, but the core part is still "just" OBIEE). So connect by SSH to your instance and do things by command line there to…
-
Honestly? I don't remember if I had to change that or not (I did it long time ago once as a test ...). Can't you just look in the filesystem the name of the instance in case it isn't "ssi" ? That's how I generally do things (maybe not the most user friendly way but I know the filesystem never lie).
-
The alternative was to post him this: and and also remember him there is an internal Oracle rule which says employees aren't supposed to ask questions on public forums. But it's just the same if he would open a SR: they will ask him the logs. I have no problem with somebody posting pieces of logs looking for a solution,…
-
Hi, in your log you have the following: SQL: SET VARIABLE QUERY_SRC_CD='DashboardPrompt';SELECT MIN("Financials - AP Transactions"."Payables Invoicing Business Unit"."Payables Invoicing Business Unit Name") Looks like the query generating the issue from a dashboard prompt object. One possible option is that you have a…
-
Honestly you are optimistic ... I could list you many other reasons why the weblogic admin server doesn't start. Many being old reasons strictly weblogic and without any link with OBIEE itself or keystores. So I suggest the OP look at the log first before to edit config files randomly (not saying it didn't fix the issue…
-
Not wanting to annoy going back to something we discussed yesterday .... but isn't it worth to include security in your migration? (yes, you said you didn't want to look at that now, but ... you see that you have issues with permissions). What's the context of your operation? Is that a one-shot move or you are setting up…
-
Not really, the calendar view is really simple and just show a calendar without other options where you select 1 date. If you want to have the other options you need to stay on choice list or one of the "standard" types.
-
Hi, Do you have SampleApp 607? (OBIEE Samples ) There are some examples on how to reload/refresh pieces by javascript somewhere inside the SampleApp. It's done by javascript, so would match what you look for.
-
Hi, If you set your prompt to also store the selected values in a presentation variable it will just do it by itself. The variable will have all the selected values. So isn't your issue more on "how to use that variable with multiple values" instead of how to capture the multiple values in a variable?
-
That's a path inside the catalog. If you look at your catalog on the filesystem you will see it starts with a /root folder, inside you find 3 other folders: /shared, /system and /users "/shared" is the "Shared Folder" in the front-end, "/users/<your username>" will be "My Folder" (because it's personal based on the…
-
"this" = ? If you mean the "deployment script" Christian wrote about it you having to write it. The idea being a deployment is scripted and because a scripted thing is executed in an automated way (based on crontab or triggered by a tool managing your devops process etc.) there wasn't a simple way to know if the GUIDs were…
-
Hi, Have a look at this: https://www.rittmanmead.com/blog/2015/09/managing-the-obiee-bi-server-cache-from-odi-12c/ From ODI and doesn't require to be on the same server. I guess it was written based on OBIEE 11g, but same thing for 12c.
-
You are missing the point ! The message tell you explicitly where to find some useful informations, so look there. Nobody has a crystal ball to imagine what kind of messages you have in your log files, so open the logs and read the messages there. If they aren't explicit enough you will have at least some useful…
-
3526194 wrote:But I need a request to the database. Where I can see a request to the database? So you want to see what query the agents sent to the database? Well, the agent itself doesn't query your physical sources, the agent execute some content and that's the one generating the queries (if needed and not having cache…
-
819624 wrote:Thank you .. I am not concerned about security at this time. Your decision ... But if you aren't concerned about security at the beginning when things are empty and it's easy to define and setup a good model, it's too late to be concerned after, once everything has been done and so just a random security will…
-
The log is nicely telling you the next step .... Jcgo-Oracle wrote:Please check Node Manager log and/or server 'biprd12c1' log for detailed information.]. Seems quite explicit with 2 logs to check for a reason on why it didn't start ...
-
And what about security? Is the security already setup correctly? Because moving RPD and catalog doesn't move the security. More in general it's a good idea to get familiar with the main concepts of OBIEE before to have to deal with migrating content between environments etc.
-
Just opened the script on a 12.2.1.3.0, it is mainly a shortcut to call the main one and setting a variable first: #!/bin/sh# WARNING: This file is created by the Configuration Wizard.# Any changes to this script may be lost when adding extensions to this configuration.DOMAIN_HOME="<path to your domain:…
-
Did you read what has been posted above? "prompt = negative AND your column < 0" But this will gives you 0 when numbers are positive, you need that logic in a filter, not in the column formula (formula change the values you see, filters limit the values returned by the query, so it's kind of obvious why you need to do that…