SQL Server 2005 使用 GETDATE() 作为参数通过 SSIS 运行存储过程

发布于 2025-01-06 07:42:30 字数 153 浏览 1 评论 0原文

我一直在寻找这个问题的答案,但找不到。我想使用 Visual Studio 2005 和 SQL Server 2005 设置一个 SSIS 包,它将今天的日期 (GETDATE()) 作为参数发送到存储过程。我可以找到如何发送参数,但不知道如何将该参数声明为 GETDATE()。这可能吗?

I've been searching for an answer to this and I can't find it. I want to set up an SSIS package using Visual Studio 2005 and SQL Server 2005 that will send today's date (GETDATE())as the parameter to a stored procedure. I can find how to send a parameter, but not how to declare that parameter to be GETDATE(). Is this even possible?

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

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

发布评论

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

评论(2

未央 2025-01-13 07:42:30

如果您需要不断评估时间(例如 GETDATE()),请在 SSIS 中创建一个名为 GetDate 的变量,其数据类型为 DateTime。右键单击属性窗口,检查 EvaluateAsExpression = True,对于表达式,使用 GETDATE()

现在将该变量连接到执行 SQL 任务。

如果您此时不需要,请考虑使用系统作用域变量之一。执行 SQL 任务的 ContainerStartTime 可能就足够了。我的首选值是 StartTime,因为这是包开始执行的时间,但您最清楚哪一个最适合您。

If you need a constantly evaluating time, like GETDATE() then, create a Variable in SSIS called GetDate with a Data Type of DateTime. Right click and on the properties window, check the EvaluateAsExpression = True and for the Expression, use GETDATE()

Now wire that variable up to the Execute SQL Task.

If you don't need this very moment, look at using one of the system scoped variables. The ContainerStartTime of the Execute SQL Task would probably suffice. My go to value is the StartTime as that's when the package started execution but you'll know best which one is right for you.

情绪失控 2025-01-13 07:42:30

需要考虑的一种可能的解决方法。您可以将 GETDATE() 设置为存储过程中参数的默认值,然后在不使用该参数的情况下调用它。

CREATE PROCEDURE YourProc 
    @InputDate DATETIME = GETDATE()
AS
...

One possible workaround to consider. You could make GETDATE() the default value for the parameter in the stored procedure and then call it without that parameter.

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