在 SQLAnalyzer 中传递时间戳参数来调试存储过程

发布于 2024-07-05 18:08:02 字数 342 浏览 6 评论 0原文

您好,我正在尝试通过 SQL 分析器调试存储过程,其中一个参数是时间戳数据类型。 如果我想将 0x00000001410039E2 作为参数传递,我该怎么做? 当我传递 0x00000001410039E2 时,我收到字符串截断错误,当我仅传递 1410039E2 时,我得到 0x1410039E20000000?

编辑:@Frans 是的,这可行,但我的问题是,在 SQLAnalyzer 中,当我右键单击并在值文本框中输入值时进行调试时,我收到错误消息:

[Microsoft][ODBC SQL Server Driver]String data, right truncation

Hi I'm trying to debug a stored procedure through SQL Analyzer and one of the parameters is a timestamp datatype. If I wanted to pass 0x00000001410039E2 through as a parameter how would i do this? When I pass 0x00000001410039E2 I get a string truncation error and when I pass just 1410039E2 I get 0x1410039E20000000?

Edit: @Frans Yes this works but my issue is that in SQLAnalyzer when i right-click and debug when I enter the value in the value textbox I get the error message:

[Microsoft][ODBC SQL Server Driver]String data, right truncation

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

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

发布评论

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

评论(1

枕梦 2024-07-12 18:08:03

调试输入屏幕要求您输入一个十六进制值。 您不必在此值前面输入 0x。

只需输入 00000001410039E2 即可。

The debug input screen expects you to enter a hexadecimal value. You don't have to enter the 0x in front of this value.

Just enter 00000001410039E2 and it will work.

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