VSTS 2008 Database Edition 似乎不知道“DATEADD”;常数,有什么想法吗?

发布于 2024-08-16 12:58:17 字数 468 浏览 6 评论 0原文

我正在尝试使用 VSTS 2008 数据库版本实现数据库构建。构建总是在以下约束下失败:

ALTER TABLE [dbo].[tablename]
    ADD CONSTRAINT [DF_tablename_date] DEFAULT (CONVERT([varchar],dateadd(hour,(-1),getdate()),(1))) FOR [date];

它显示的错误如下:

TSD03082: The name "hour" is not permitted in this context. Valid expressions are constants, constant expressions, and (in some contexts) variables. Column names are not permitted.

有人知道这里出了什么问题吗?

I'm trying to implement a database build using VSTS 2008 Database Edition. The build always fails on the following constraint:

ALTER TABLE [dbo].[tablename]
    ADD CONSTRAINT [DF_tablename_date] DEFAULT (CONVERT([varchar],dateadd(hour,(-1),getdate()),(1))) FOR [date];

The error that it shows is the following:

TSD03082: The name "hour" is not permitted in this context. Valid expressions are constants, constant expressions, and (in some contexts) variables. Column names are not permitted.

Anybody have an idea what is wrong here?

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

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

发布评论

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

评论(2

帅气尐潴 2024-08-23 12:58:17

您是否尝试过将 hour 括在方括号 [hour] 中?

Have you tried wrapping hour in square brackets, [hour] ?

戏剧牡丹亭 2024-08-23 12:58:17

在MSDN上问了同样的问题:
http://social .msdn.microsoft.com/Forums/en-US/vstsdb/thread/24afdc7e-3cef-4322-99ff-76ac5174cf3c/

看起来这是一个错误。线程中建议了一种解决方法。

Asked the same question on MSDN:
http://social.msdn.microsoft.com/Forums/en-US/vstsdb/thread/24afdc7e-3cef-4322-99ff-76ac5174cf3c/

Looks like it's a bug. A workaround has been suggested in the thread.

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