Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 77 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Executing a SQL query on a dataset within OAC?

Is it possible to executing a SQL query on a dataset within OAC to generate a table as a result?
Answers
-
You can run a logical sql query on a dataset just like you see in the query logs. What is the requirement here you are trying to satisfy?
1 -
I have created the dataset from a connection to Oracle ADW. I have a set of pre-built SQL queries that I would like to run on this dataset directly in OAC to create tables to my canvas. I am not proficient in SQL.
I ran the below query on the "focus table table" in ADW. But I want to run this query (and others) against the dataset that was created from that table in OAC
sample query:
SELECT BillingPeriodStart, ProviderName, SubAccountId, SubAccountName, ServiceName, SUM(BilledCost) AS TotalBilledCost, SUM(EffectiveCost) AS TotalEffectiveCostFROM focus_data_tableWHERE ServiceName = ? AND BillingPeriodStart >= ? AND BillingPeriodStart < ?GROUP BY BillingPeriodStart, ProviderName, SubAccountId, SubAccountName, ServiceNameORDER BY MonthlyCost DESC
0 -
did this use case make sense? any thoughts?
0