聚合中的 SSAS 时间跨度

发布于 2024-11-19 21:07:37 字数 213 浏览 3 评论 0原文

我在数据仓库中有一个时间跨度,表示用户执行任务所花费的时间(不是时间维度,而是度量)。在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千仐 2024-11-26 21:07:37

我这样解决了这个问题:

  • 在SSIS中,我将时间跨度转换为经过的秒数,并将其作为整数存储
  • 在SSAS中,我将此度量视为一个名为“持续时间总和”的SUM,但将其隐藏
  • 在SSAS中我做了一个名为“时间花费总和”,表达式如下:

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:

  • In SSIS I converted the timespan into elapsed seconds and stored it as an integer
  • in SSAS I treated this measure as a SUM called "Duration In Seconds Sum", but hid it
  • in SSAS I made a calculation called "Time Spent Sum" with the following expression:

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"
)
)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文