链接服务器”(null)”的 OLE DB 访问接口 “SQLNCLI10” 返回了消息 “Cannot start more transactions on this session.”

开发同事反馈一个sql server存储过程执行的时候,报链接服务器”(null)”的 ole db 访问接口 “sqlncli10” 返回了消息 “cannot start more transactions on this session.”。这个存储过程,个人做了一个精简和脱敏处理后如下:

 

begin try
    begin transaction    
                    
    insert into opendatasource('sqloledb', 'data source=xxx.xxx.xx.xxx;user id=xxx;password=xxx).xxx.dbo.xxx 
    (........)
    select ..... from .....
    commit transaction
end try
begin catch
      if @@trancount>0
        rollback
         .........
end catch

 

 

对于这种问题,是因为:对于大多数 ole db 访问接口(包括 sql server),必须将隐式或显示事务中的数据修改语句中的 xact_abort 设置为 on。 唯一不需要该选项的情况是在提供程序支持嵌套事务时。具体参考官方文档:

 

xact_abort must be set on for data modification statements in an implicit or explicit transaction against most ole db providers, including sql server. the only case where this option is not required is if the provider supports nested transactions.”

 

在存储过程里面的begin transaction前设置set xact_abort on;后问题即可解决。

 

 

 

参考资料:

 

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐