本文介绍了将SSRS中的数据驱动订阅设置为日期/时间变量的参数。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在SSRS中设置数据驱动的订阅,我希望它是日期/时间变量的参数。 业务要求是我将Parmenter传递给报告,该报告需要设置为从订阅的电子邮件提醒
发送之日起的昨天。

I am setting a data-driven subscription in SSRS with what I hope to be a parameter for a date/time variable.  The business requirement is that I pass a Parmenter to the report that needs to be set to yesterday's date from when the subscribed email alert is sent.

这是我的查询在SSRS中使用数据驱动的订阅。如何进行以下SQL查询返回 上一个日期而不是当前系统日期:

This is a query I am using in a data-driven subscription in SSRS. How to I make the following SQL query return  the previous date instead of the current system date:

    SELECT CONVERT(date,SYSDATETIME())as rundate

    SELECT CONVERT (date, SYSDATETIME()) as rundate

推荐答案

这是我的查询在SSRS中使用数据驱动的订阅。如何进行以下SQL查询返回 上一个日期而不是当前系统日期:

This is a query I am using in a data-driven subscription in SSRS. How to I make the following SQL query return  the previous date instead of the current system date:

    SELECT CONVERT(date,SYSDATETIME())as rundate

    SELECT CONVERT (date, SYSDATETIME()) as rundate


这篇关于将SSRS中的数据驱动订阅设置为日期/时间变量的参数。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 03:26