sql clr 超时

发布于 2024-10-14 21:54:21 字数 776 浏览 1 评论 0原文

我有一个调用 webmethod 的 CLR 存储过程。 webmethod 调用的运行时间有点长(大约需要 3 分钟才能完成)。 CLR sp根本不调用Sql服务器,但是它超时了。我该如何调整超时时间。 代码如下:

  [SqlProcedure]
    public static int RunSessionForTrid(string sessionName, string trid, out SqlString msg)
    {
        string sxml = GetSessionForTrid(sessionName, trid);
        using (BaaNServices b = new BaaNServices())
        {
            try
            {
                msg = b.BaanSession(sxml);
                SqlContext.Pipe.Send((string)msg);
                return 0;
            }
            catch (Exception ex)
            {
                msg = ex.Message;
                SqlContext.Pipe.Send(ex.Message);
                //throw ex;
                return -1;
            }
        }
    }
    #endregion  

I have a CLR Stored procedure that calls a webmethod. The webmethod call is a somewhat long running taks ( about 3 minutes to complete). The CLR sp does not call Sql server at all, However it times out. How can I adjust the time out.
The code is as follows:

  [SqlProcedure]
    public static int RunSessionForTrid(string sessionName, string trid, out SqlString msg)
    {
        string sxml = GetSessionForTrid(sessionName, trid);
        using (BaaNServices b = new BaaNServices())
        {
            try
            {
                msg = b.BaanSession(sxml);
                SqlContext.Pipe.Send((string)msg);
                return 0;
            }
            catch (Exception ex)
            {
                msg = ex.Message;
                SqlContext.Pipe.Send(ex.Message);
                //throw ex;
                return -1;
            }
        }
    }
    #endregion  

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

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

发布评论

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

评论(1

醉酒的小男人 2024-10-21 21:54:21

您还可以异步运行该方法。 CLR sp 将立即结束,您无法返回结果,但不会出现任何超时问题。

处理 Webreference 应在异步回调中完成。

You could also run the method asynchronosly. The CLR sp would end immediately and you could not return a result, but you would not have any timeout problems.

Disposing the Webreference should be done in the async callback.

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