金蝶KIS專(zhuān)業(yè)版進(jìn)行憑證過(guò)帳或結(jié)賬時(shí),提示"名稱(chēng)或代碼在系統(tǒng)中已被使用"(錯(cuò)誤代碼:3604 E14H)的解決辦法
[重要通告]如您遇疑難雜癥,本站支持知識(shí)付費(fèi)業(yè)務(wù),掃右邊二維碼加博主微信,可節(jié)省您寶貴時(shí)間哦!
這幾天有網(wǎng)絡(luò)朋友找到我說(shuō),他家的金蝶KIS專(zhuān)業(yè)版出了點(diǎn)問(wèn)題,但是發(fā)現(xiàn)這個(gè)錯(cuò)誤吧,還不是一種,但錯(cuò)誤代碼基本一致"名稱(chēng)或代碼在系統(tǒng)中已被使用"(錯(cuò)誤代碼3604 E14H)如下面幾張圖所示
名稱(chēng)或代碼在系統(tǒng)中已經(jīng)被使用
錯(cuò)誤代碼:3604(E14H)
Source :Microsoft OLE DB Provider for SQL Server
Detail :在結(jié)果列的列表中多次出現(xiàn)列名 'F8'
其實(shí)出現(xiàn)這個(gè)錯(cuò)誤,沒(méi)有說(shuō)固定哪里錯(cuò)誤,出現(xiàn)的問(wèn)題也都在結(jié)賬或者年結(jié)上,所以處理的問(wèn)題也多籠統(tǒng);
萬(wàn)事第一步,備份數(shù)據(jù)庫(kù),執(zhí)行語(yǔ)句校正即可
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
不同的賬套,可能會(huì)提示不同的列名,如F1等,請(qǐng)變通執(zhí)行
錯(cuò)誤原因:核算項(xiàng)目橫表t_itemdetail的核算項(xiàng)目類(lèi)別數(shù)目和科目掛的核算項(xiàng)目數(shù)目不一致
執(zhí)行這個(gè)語(yǔ)句就可以了
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專(zhuān)業(yè)版進(jìn)行憑證過(guò)帳時(shí),提示"名稱(chēng)或代碼在系統(tǒng)中已被使用"(錯(cuò)誤代碼:3604 E14H)如果提示F1備份賬套后,執(zhí)行以下SQL后,再過(guò)賬:
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
其他延伸可能出現(xiàn)的問(wèn)題,可參閱!
第一種方式:
1、賬套實(shí)體文件所在磁盤(pán)是不是NTFS格式。 2、數(shù)據(jù)庫(kù)版本是不是MSDE版本。 3、dbcc checkdb檢查數(shù)據(jù)庫(kù)是否異常。
第二種方式:
1.萬(wàn)事第一步,備份數(shù)據(jù)庫(kù)。
2.有沒(méi)有安裝數(shù)據(jù)庫(kù),有的話(huà),打開(kāi)數(shù)據(jù)庫(kù),找到賬套對(duì)應(yīng)數(shù)據(jù)庫(kù),新建查詢(xún),復(fù)制,數(shù)據(jù)庫(kù)執(zhí)行語(yǔ)句
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.如果,你安裝的是金蝶自帶的數(shù)據(jù)庫(kù),新建一個(gè)txt文檔將以上SQL語(yǔ)句復(fù)制到文檔里,然后改為*.sql 的文件,就是將.txt改成.sql,然后通過(guò)賬套管理執(zhí)行,操作路徑:賬套管理->選中問(wèn)題賬套->操作菜單,執(zhí)行命令->選擇*.sql 文件->執(zhí)行即可
問(wèn)題未解決?付費(fèi)解決問(wèn)題加Q或微信 2589053300 (即Q號(hào)又微信號(hào))右上方掃一掃可加博主微信
所寫(xiě)所說(shuō),是心之所感,思之所悟,行之所得;文當(dāng)無(wú)敷衍,落筆求簡(jiǎn)潔。 以所舍,求所獲;有所依,方所成!