SSRS 2005 创下新纪录

发布于 2024-09-15 21:37:29 字数 99 浏览 6 评论 0原文

如何获取 SSRS 2005 中的下一条记录?

SSRS 2005 有 Previous 功能,但没有 Next 功能

有没有其他方法可以实现此功能?

How do I get the next record in SSRS 2005?

SSRS 2005 has the Previous function but it doesn't have the Next function

Is there any other way to achieve this functionality?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我家小可爱 2024-09-22 21:37:29

一些想法:

  1. 改变你的逻辑,以便丢弃第一行数据,然后在下一条记录上,使用 Previous 作为当前行,使用当前行作为“Next”。

  2. 将所需数据添加到数据集中,以便将其包含在其他列中。也许 Row_Number()Row_Number() + 1 的一些连接可能是有序的。

  3. 创建一个使用临时表的存储过程,并在其中使用下一行值更新其他列。请务必关闭预验证,这样 SP 就不会因为临时表而崩溃(因为当使用 SET FMTONLY ON 运行存储过程时,临时表将不会被填充并且验证将失败)。

如果您更详细地说明您想要完成的任务,我也许能够提出更多想法。

A few ideas:

  1. Shift your logic so that the first row of data is discarded, then on the next record, use Previous for the current row and the current row for "Next".

  2. Add the desired data to your dataset so it is contained in additional columns. Perhaps some joins on Row_Number() to Row_Number() + 1 could be in order.

  3. Create a stored procedure that uses a temp table, and in it update additional columns with the next-row values. Be sure to turn off pre-validation so the SP won't blow up because of the temp tables (as when a stored procedure is run using SET FMTONLY ON, the temp tables will not get populated and validation will fail).

If you give more detail on what you're trying to accomplish, I might be able to come up with more ideas.

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