Categories
- All Categories
- Oracle Analytics Learning Hub
- 18 Oracle Analytics Sharing Center
- 17 Oracle Analytics Lounge
- 228 Oracle Analytics News
- 44 Oracle Analytics Videos
- 15.8K Oracle Analytics Forums
- 6.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 84 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
Executing a SQL query on a dataset within OAC?

User_N4O6X
Rank 2 - Community Beginner
Is it possible to executing a SQL query on a dataset within OAC to generate a table as a result?
0
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