金蝶KIS專業版進行憑證過帳或結賬時,提示"名稱或代碼在系統中已被使用"(錯誤代碼:3604 E14H)的解決辦法
[重要通告]如您遇疑難雜癥,本站支持知識付費業務,掃右邊二維碼加博主微信,可節省您寶貴時間哦!
這幾天有網絡朋友找到我說,他家的金蝶KIS專業版出了點問題,但是發現這個錯誤吧,還不是一種,但錯誤代碼基本一致"名稱或代碼在系統中已被使用"(錯誤代碼3604 E14H)如下面幾張圖所示
名稱或代碼在系統中已經被使用
錯誤代碼:3604(E14H)
Source :Microsoft OLE DB Provider for SQL Server
Detail :在結果列的列表中多次出現列名 'F8'
其實出現這個錯誤,沒有說固定哪里錯誤,出現的問題也都在結賬或者年結上,所以處理的問題也多籠統;
萬事第一步,備份數據庫,執行語句校正即可
update d set d.fdetailcount=v.fcount
from t_ItemDetail d,
(select fdetailid,count(*) fcount from t_ItemDetailv where fitemid=-1 group by fdetailid ) v
where d.fdetailid=v.fdetailid
不同的賬套,可能會提示不同的列名,如F1等,請變通執行
錯誤原因:核算項目橫表t_itemdetail的核算項目類別數目和科目掛的核算項目數目不一致
執行這個語句就可以了
update d set d.fdetailcount=v.fcount
from t_ItemDetail d,
(select fdetailid,count(*) fcount from t_ItemDetailv where fitemid=-1 group by fdetailid ) v
where d.fdetailid=v.fdetailid
go
update d set d.fdetailcount=v.fcount
from t_ItemDetail d,
(select fdetailid,count(*) fcount from t_ItemDetailv where fitemid=-1 group by fdetailid ) v
where d.fdetailid=v.fdetailid
在使用KIS專業版進行憑證過帳時,提示"名稱或代碼在系統中已被使用"(錯誤代碼:3604 E14H)如果提示F1備份賬套后,執行以下SQL后,再過賬:
update d set d.fdetailcount=v.fcount from t_ItemDetail d,
(select fdetailid,count(*) fcount from t_ItemDetailv where fitemid=-1 group by fdetailid ) v
where d.fdetailid=v.fdetailid
如果提示F2
select * from t_itemdetail
exec sp_cleanitemdetailv
GO
update a set a.fdetailcount=b.Fcount
from t_itemdetail a join (select Fdetailid,count(*) as Fcount from t_itemdetailv where fitemid=-1 group by Fdetailid) b
on a.fdetailid=b.fdetailid where a.fdetailcount<>b.Fcount
其他延伸可能出現的問題,可參閱!
第一種方式:
1、賬套實體文件所在磁盤是不是NTFS格式。 2、數據庫版本是不是MSDE版本。 3、dbcc checkdb檢查數據庫是否異常。
第二種方式:
1.萬事第一步,備份數據庫。
2.有沒有安裝數據庫,有的話,打開數據庫,找到賬套對應數據庫,新建查詢,復制,數據庫執行語句
update d set d.fdetailcount=v.fcount
from t_ItemDetail d,
(select fdetailid,count(*) fcount from t_ItemDetailv where fitemid=-1 group by fdetailid ) v
where d.fdetailid=v.fdetailid
3.如果,你安裝的是金蝶自帶的數據庫,新建一個txt文檔將以上SQL語句復制到文檔里,然后改為*.sql 的文件,就是將.txt改成.sql,然后通過賬套管理執行,操作路徑:賬套管理->選中問題賬套->操作菜單,執行命令->選擇*.sql 文件->執行即可
問題未解決?付費解決問題加Q或微信 2589053300 (即Q號又微信號)右上方掃一掃可加博主微信
所寫所說,是心之所感,思之所悟,行之所得;文當無敷衍,落筆求簡潔。 以所舍,求所獲;有所依,方所成!