本篇内容介绍了“分析sqlserver2008跨数据库事务测试”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
1.在mysql中建立tp_test1表:
create table tp_test1(
tid int primary key not null,
tgrade int unique key not null
)
2.在sqlserver2008数据库中如下代码:
declare @tgrade int;
set @tgrade=3;
begin
begin try
begin transaction---开启事务
insert openquery(cs_guoquanwang_c,'select tgrade from tp_test1') select @tgrade;--向myssql库插入数据
insert into tp_test1 values(cast(getdate() as varchar(30))+'测试跨数据库事务');--向本机服务器插入数据
commit transaction;--提交事务
end try
begin catch
rollback transaction;--回滚事务
print '回滚事务!';
end catch;
end;
由此可以看出sqlserver目前不支持跨异架构数据库的事务。
“分析sqlserver2008跨数据库事务测试”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!