SQL Server 到 Web 服务到 PerformancePoint 到 SharePoint
好的,我有一个 SQL Server 数据库视图,其中包含预订列表(员工、日期、费用)。我需要做的是创建一个 PerformancePoint 图表,该图表基本上列出了员工并汇总了特定期间的所有费用。 例如
Karen 01/01/2010 £50Jim 01/01/2010 £20
Karen 02/01/2010 £30
Tim 03/01/2010 £70
一月图表
凯伦 £75
吉姆 £60
Tim £70
然后数据将用于各种图表等..
我该怎么做呢?我有 PerformancePoint 迫不及待,我可以输入 sql 语句等...但它是对个人进行总计,并且只返回我正在努力解决的特定时期(可能会改变)的结果。我需要为此使用网络服务吗?我知道如何制作它们,但不知道如何与 PerformancePoint 集成。
非常感谢所有贡献者
Ok I have a sql server database view with a list of bookings (employee, date, charge). What i need to do is create a PerformancePoint chart that basically lists the employees and totals all their charges for a particular period.
e.g.
Karen 01/01/2010 £50
Jim 01/01/2010 £20
Karen 02/01/2010 £30
Tim 03/01/2010 £70
Chart for January
Karen £75
Jim £60
Tim £70
The data would then be used in various graphs etc..
How would i go about doing this? I have PerformancePoint raring to go, and I can enter sql statements etc...but its the totalling the individuals and only returning results for a specific period (that can change) that I am struggling with. Would i need to use a web service for this? I know how to make them but no idea how to integrate with PerformancePoint.
Many thanks to all who contribute
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过多种不同的方式来做到这一点。这是一种路径:
使用 Reporting Services 显示矩阵,如下所示:
<前><代码> 一月 二月 三月
凯伦 $75 $50 $40
吉姆 $60 $65 $70
蒂姆 $70 $75 $80
在仪表板设计器中创建 sql server 报告 http://img36.imageshack.us/img36/7328 /createsqlserverreport.png
这就是要点。您应该意识到,使用 PerformancePoint 来处理这个孤立的事件有点矫枉过正。但是,如果您想将大量指标合并到 BI 演示中,那么 PerfPoint 就可以很好地工作。
You can do this many different ways. Here is one path:
Use Reporting Services to display your matrix, like so:
create sql server report in dashboard designer http://img36.imageshack.us/img36/7328/createsqlserverreport.png
that's about the gist of it. You should realize that using PerformancePoint for this isolated incident is kinda overkill. However, if you have a bunch of metrics that you want to incorporate into your BI presentation, then PerfPoint will work just fine.