开放网络分析是否允许我根据数据库中存储的数据为网络应用程序创建报告?
我正在寻找一种工具,允许我们根据数据库中的数据创建报告,例如 Crystal Reports 以及许多其他数据库报告工具。我发现 Open Web Analytics 说它使用 SQL 并且有一个数据库访问层。这是否意味着我可以拥有一个用于网络分析和数据库报告的工具?
那么,我是否可以设置 Open Web Analytics 来访问我的数据库并创建 SQL 查询来生成可在仪表板上查看的报告,并且可以将这些与 Web 分析数据结合起来以获得更好的报告吗?
还有其他我应该看看可以做类似事情的工具吗?其他公司(小公司)如何监控此类信息?
欢迎任何建议/指示。 问候
I am looking for a tool that allows us to create reports from the data in our database, like Crystal Reports, and the many other Database Reporting tools out there. I came across Open Web Analytics which says it uses SQL and has a database access layer. Does this mean I can have a single tool for web analytics and for database reporting?
So can I set up Open Web Analytics with access to my database and create SQL queries that will produce reports that can be viewed on the dashboard, and can these be combined with web analytics data for even better reports?
are there any other tools I should look at that can do similar. What do other companies (small companies) do to monitor this type of information?
any advice / pointers welcome.
regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
OWA 不是通用报告工具。
OWA 有一个定义的数据库模式供其使用。如果您想要集成的数据适合该架构,那么您可以使用 API 导出所有类型的组合并创建自定义报告。
如果数据不适合架构,那么您需要添加新表来容纳数据并构建新的实体、指标、维度类 - 这是大量的编码。
OWA 报告/ORM 层对于将数据表示为事实和维度有点特殊。目前它不允许您将两个事实表连接在一起(出于性能原因) - 迫使您将所有指标组合非规范化为单个事实表。
OWA is not a generic reporting tool.
OWA has a defined database schema that it uses. If the data that you want to integrate fits into that schema then you can use the API to export all sort of combinations and create custom reports.
If the data does not fit into the schema then you need to add new tables to house the data and build new entity, metric, dimension classes - which is a good deal of coding.
OWA reporting/ORM layer is a bit particular about representing data as facts and dimensions. So much that it currently doesn't allow you to join two fact tables together (for performance reasons) - forcing you to de-normalize all metric combinations into a single fact table.