41 questions
0
votes
0
answers
17
views
How to apply RLS based on username in Oracle Analytics Server (OAS 2025)?
I have a dataset that contains a username column. I want to filter BI visualizations automatically based on the logged-in user in Oracle Analytics Server (2025).
How can I implement RLS (Row Level ...
1
vote
0
answers
66
views
Row missing issue with Oracle Analytic Publisher (datamodel) when sourced from OBIEE (Subject Area)
Just found out that when i imported an OBIEE analysis with 20000+ rows to a BI Publisher data model.
After create report and export out result. There are data missing.
Remark:
For analysis, export ...
0
votes
1
answer
2k
views
see physical SQL in oracle analytics cloud reports
We are using Oracle Analytics Cloud. I have admin role. But i can not see physical sql in session log. I can see logical SQL and query run stats etc.
I checked sesion log - it more or less look like ...
1
vote
0
answers
62
views
Oracle Analytical Desktop Variable Prompt issue
Before Saving
After Saving
In Oracle Analytical Desktop, I am using Variable Prompt (Custom Visualization), After saving my canvas the dropdown values of Variable Prompt Disappear .Only the selected ...
1
vote
2
answers
201
views
SQL query : How to retrieve minimum value from top to that row in Oracle
I need help to write a query in Oracle to get minimum value for each row, comparing the current row amount with the previous minimum value.
In another word, calculate minimum value for each row from ...
0
votes
1
answer
110
views
How to find the sum of each group which is grouped by another group?
I am actually trying to make a matrix table using Oracle Analytics tool and PL/SQL.
Let's say i have a query which has in select statement variables Employee, Description, orderid ,amount and is ...
-1
votes
1
answer
87
views
How to update security credentials in Oracle BI
The issue is i have a catalogue of reports that have security policies assigned to them. Let's say things like 'manager' can access this report, but not this. This goes on throughout the catalogue. I ...
1
vote
1
answer
117
views
Duplicated rows numbering
I need to number the rows so that the row number with the same ID is the same. For example:
Oracle database. Any ideas?
0
votes
2
answers
406
views
OBIEE RPD: Snowflaked table not showing up as a fact table in the BMM layer
I am using the RPD tool to create a data model for a database which has 6 tables.
Dimensions : ProductFamily, ProductionLine,Company,CurrencyExchange
Facts: WorkOrderStats, WorkOrder
But, WorkOrder ...
0
votes
1
answer
358
views
How to connect DbVisualizer to OAC ADW
OAC ADW = Oracle Analytics Cloud Autonomous Data Warehouse. Our OAC ADW admin provided us .zip wallet files for connection, however this is not natively supported by DbVisualizer. How can I make the ...
0
votes
1
answer
785
views
Hiding a column in pivot table if the column is null in Oracle OBIEE
we are creating a pivot table in OBIEE, we need to hide columns from the pivot table if those columns are null. Is there any implicit way of doing this in Oracle OBIEE?
Thanks in advance
1
vote
0
answers
269
views
Unknown error while importing .dva file in Oracle Analytics Server 5.5.0
I have a problem while I'm trying to import a .dva file generated from Oracle Analytics Desktop into Oracle Analytics Server. It speems that it doesn't come from any specific dva file, it happens with ...
10
votes
3
answers
1k
views
Conditional SUM on Oracle
I´m tring to make a query with a conditional SUM. The SUM needs to get more than 15, after that reset it. Like this:
A | 3 | 3
B | 7 | 10
C | 6 | 16 -- ====
D | 5 | 5
E | 9 | 14
F | 3 | 17 -- ===...
2
votes
1
answer
89
views
Using Oracle analytics for average
How should I use the analytics to give me a rolling average where the sample size changes?
create table MyVals (Item_no char(10), epoch number, Yield number, Skip_Period char(1), Reset_Period char(1)...
0
votes
2
answers
125
views
string splited by comma using oracle sql
How can I split a string by comma using oracle sql?
Here I have a column which has values like below
123Lcq
Lf32i
jkp32m
I want to split it by comma
1,2,3,L,c,q
L,f,3,2,i
j,k,p,3,2,m
1
vote
1
answer
1k
views
Dense_Rank function not work
I have a below query :
select id, firstname,LastName,Company, dense_rank() over (partition by company order by id )
from UserAdditionalData
where Company is not null
Here is the result that I am ...
-2
votes
2
answers
46
views
Fetch data from columns using max over another column using Oracle analytic functions
I need to fetch the sum between bal and res columns for each different account (acc) using the max(timestamp), look at this:
ID ACC BAL RES TIMESTAMP
--------------------------
1 100 70 0 ...
6
votes
5
answers
5k
views
Sql (on Oracle) aging report by days
I need help writing a aging report on oracle.
The report should be like:
aging file to submit total 17
aging file to submit 0-2 days 3
aging file to submit 2-4 days 4
aging file to ...
1
vote
1
answer
222
views
Improving Complicated SQL Query with Oracle Analytics
I'm dealing with this particularly complicated (to me at least, if you're a math geek, don't you judge me!) issue.
I've essentially got two things a record of what current stock levels are and a ...
1
vote
1
answer
9k
views
How do I use rank() with an inner join?
I want to join my CHEESE table with FRESHNESS to get CHEESE and FRESHNESS code for
cheeses where max(seq_no) for each cheese id is MOLD.
When using rank(), where do I join to FRESHNESS?
CHEESE ...
4
votes
3
answers
7k
views
Oracle analytic function - using FIRST_VALUE to remove unwanted rows
I believe the Oracle function FIRST_VALUE is what I need to be using based on these two questions:
SQL - How to select a row having a column with max value
Oracle: Taking the record with the max date
...