有一个存储过程, 在sqlsever上执行不到1秒, 但是在帆软上会执行很久都没有查询到结果, 这是为什么?应该怎么做 代码大致如下USE GOSET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER PROCEDURE .@公司 varchar(20),@年 int,@月 intASBEGINSET NOCOUNT ON;SET ANSI_WARNINGS ONCREATE TABLE #linshi(年 int,月 int,公司 varchar(50),类别 varchar(50),部门 varchar(50),金额 float)declare @l_error intdeclare @l_trancnt intselect @l_trancnt = @@trancountif @l_trancnt = 0 begin transaction tran_sjzzelse save transaction tran_sjzzdelete from OTHER.DBO.testsjzzf where corp=@公司 and iyear=@年 and imonth=@月INSERT INTO OTHER.DBO.testsjzzfselect * from testselect * from testsjzzfEND