Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Sending Alerts Using Oracle Business Intelligence Delivers 12c

Hello Guys ,
Does the so called Ibot (Agents in Obiee 12c) , when scheduled , hits the cache or database?
I understand when you turn on the option (For seeding cache) while scheduling , it does Cache seeding.
But in general, if I schedule an Agent for Alert for 200 users , does it run against database each time, wasting the database resources?
Answers
-
Same answer as always: It depends.
a) Is caching generally enabled on the server?
b) Is caching enabled for the tables your requests hit?
c) Does the analysis used in the agent explicitly turn off cache using the DISABLE_CACHE_HIT variable?
etc
0 -
Thanks Chris for your quick response.
So is there any way , that we could know, whether my scheduled Agents(Ibots) for Alerts are hitting the database or Cache currently?
I have 20 scheduled Alerts in place currently.
0 -
Look at the logs, everything running on your system leaves some logs, everything doing an query has logs there (with the info if the LSQL has been sent down to a database or matched a cache entry).
0 -
As Gianni said: Look at the logs. And at the Usage Tracking tables.
0 -
Logs : How do we differentiate whether the query hits cache or database.
Usage Tables: Does (NUM_CACHE_HITS - Indicates the number of times that the cache result returned for the query. ) tells us that it had hit cache instead of database?
0 -
It's written in full letters if the cache is used in the logs, and you also see that no physical query is generated and executed.
0 -
Why not cache the report or source table for the time between agents. say if you are running the agent daily keep the cache for the objects for a day or 20 hours.
0 -
Not sure if that's a valid idea in all cases since what the OP calls "wasting the database resources" may simply be the agent running off doing precisely what it is supposed to do: getting 200 *personalized* data sets for 200 distinct users.
And if the 200 recipients should get the same data then the query anyway only ever runs once. Most likely the confusion comes from a misunderstanding of how agents work in general and what that agent does in particular.
Added to that is an equally likely misunderstanding of cache as "cache solves all your performance issues" rather than attacking the root causes of performance issues.
0