在 SQLAnalyzer 中传递时间戳参数来调试存储过程
您好,我正在尝试通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调试输入屏幕要求您输入一个十六进制值。 您不必在此值前面输入 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.