我确定其他人昨天做了一些更改。
存储过程的行为发生了变化,该过程将数据从其他一些表逐个复制到MainTable
,并执行其他一些过程。
insert into logTable("part 1 started", getdate())
insert into mainTable
select * from table1
insert into logTable("part 2 started", getdate())
insert into mainTable
select * from table2
.......
.......
insert into logTable("complete", getdate())
插入的数据用于立即显示在MainTable
中,并且在日志表中可以看到每个进程在插入数据后立即进行。
但现在好像MainTable
和logTable
中的所有数据都会在最终完成后显示。
程序没有任何改变,但我认为
这种交易设置是什么?
如何重新设定?
由于
答案 0 :(得分:0)