問題現(xiàn)象:在用友T3財(cái)務(wù)軟件的核算管理模塊中,查詢收發(fā)存匯總表的時(shí)候報(bào)錯(cuò),具體錯(cuò)誤情況為:在查詢用友T3軟件的收發(fā)存匯總表時(shí)選取級(jí)次查詢報(bào)錯(cuò),提示: 數(shù)據(jù)庫中已存在名為 'temp_rdstyle' 的對(duì)象。

查詢用友T3收發(fā)存匯總表報(bào)表:已存在名為 'temp_rdstyle' 的對(duì)象? 用友T3

問題分析:在查詢用友T3的收發(fā)存匯總表時(shí),如果選取了級(jí)次查詢時(shí)會(huì)建立一臨時(shí)表temp_rdstyle,如果數(shù)據(jù)庫已存在此表導(dǎo)致建立時(shí)報(bào)錯(cuò),

解決方案:刪除存在的臨時(shí)表temp_rdstyle,SQL語句如下:

if exists (select * from sysobjects where name='temp_rdstyle')
drop table temp_rdstyle