聚合中的 SSAS 时间跨度
我在数据仓库中有一个时间跨度,表示用户执行任务所花费的时间(不是时间维度,而是度量)。在 SQL 中,我将其设置为日期时间。当将其拉入 SSAS 时,它会转换为日期类型,并且这在多维数据集度量聚合中不可用。我是否需要将时间跨度转换为整数(秒),或者有更好的方法吗?
编辑:
我将 SQL 中的数据类型更改为 time(7) 并将其作为 WChar 拉入 SSAS,这是不可求和的。
I have a timespan in a datawarehouse representing time spent by a user doing a task (not a time dimension, but a measure). In SQL I have this set as datetime. When this is pulled into SSAS it converts to a Date Type, and this is not usable in a cube measure aggregation. Do I need to convert the timespan into an integer (seconds), or is there a better way to do this?
EDIT:
I changed the data type in SQL to time(7) and it pulled into SSAS as a WChar, which is not summable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我这样解决了这个问题:
iif([Measures].[Duration In Seconds Sum] = 0,
无效的,
Format(Int([测量].[持续时间秒数总和]/86400), "0:") +
格式(
TimeSerial(0, 0, [测量].[持续时间(以秒为单位)总和]
- (Int([测量].[持续时间秒数总和]/86400) * 86400)),"HH:mm:ss"
)
)
I solved this as so:
iif([Measures].[Duration In Seconds Sum] = 0,
null,
Format(Int([Measures].[Duration In Seconds Sum]/86400), "0:") +
Format(
TimeSerial(0, 0, [Measures].[Duration In Seconds Sum]
- (Int([Measures].[Duration In Seconds Sum]/86400) * 86400)),"HH:mm:ss"
)
)