We have some very exciting news to share with you today.
SQL Data Explorer is now available to all UGS beta customers
SQL Data Explorer enables you to query your events data using SQL and extract insights and information that may not be accessible through other Analytics features. Results can be visualized in charts or read from the table of results easily. You can read the documentation here.
What is the impact of this?
The SQL interface will be familiar to data-literate UGS users, and enables them to dive into the event data submitted by their players’ devices to answer questions that they previously couldn’t.
Examples include:
A breakdown of custom KPIs on a daily/weekly/monthly basis,
Transforming and aggregating event data to produce custom reports.
Investigating issues that may be impacting players, retention, or gameplay
How can I report issues or share feedback?
You can share feedback here on the forum, we really value your feedback and can’t wait to hear from you. Let us know if there are any reports or queries that you need help with or want to share with others.
@PeachyPixels Great feedback again, we are looking into this. We believe we have already identified the issues that you’ve reported. We will provide a follow up and potential work around shortly.
Thanks again for the great feedback. As Jeff mentioned, we are aware of a few issues with the new SQL Explorer tool, the team are working hard to resolve the issues and you will see updates over the coming days and weeks.
Each of the issues you raised has been confimred and there is a workaround on one of them:
Can’t update a saved report
Can’t delete a saved report
Y/X chart setup order would be more intuitive as X/Y
Chart Axis and Values get out of sync.
This seems to occur if you don’t specify an ORDER in your query, but can to be resolved if you do explicitly specify the order.*
e.g.*
csharp* *select EVENT_NAME, count(*) from EVENTS where EVENT_DATE > CURRENT_DATE-2 group by EVENT_NAME order by EVENT_NAME;* *