版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、不同月份的年初累計(jì)折舊和年初原值皆不同,問題來源:(分公司) U8產(chǎn)品支持部楊天椿 2005年5月12日,現(xiàn)象,問題說明: 固定資產(chǎn)及累計(jì)折舊表(一),同一類別不同月份的年初累計(jì)折舊和 年初原值皆不同,1月是對(duì),麻煩寫條語句更新2-12月的年初累計(jì)折舊和年初原值等于1月,現(xiàn)象,固定資產(chǎn)及累計(jì)折舊表(一):一月份的年初原值:614369944.4 年初累計(jì)折舊的情況是一樣的,不再分析,現(xiàn)象,二月份的數(shù)據(jù)為:611929523.82,相差:2440420.58,分析過程,先分析界面看到的數(shù)據(jù)和數(shù)據(jù)庫中的是否一致:可以看到數(shù)據(jù)是一致的,分析過程,使用的語句: select sum(dblyearva
2、lue),sum(dblyeardeprtotal) from fa_total where iperiod=1 select sum(dblyearvalue),sum(dblyeardeprtotal) from fa_total where iperiod=2,分析過程,分析是否存在不相等的數(shù)據(jù): select * from ( select * from fa_total where iperiod=1 ) aa inner join ( select * from fa_total where iperiod=2 ) bb on aa.sdeptnum=bb.sdeptnum and
3、 aa.stypenum=bb.stypenum where aa.dblyearvaluebb.dblyearvalue,分析過程,查詢結(jié)果是沒有,分析過程,再分析數(shù)據(jù)差異在哪里: select sum(aa.dblyearvalue),sum(aa.dblyeardeprtotal) from ( select * from fa_total where iperiod=1 -order by sdeptnum,stypenum ) aa left join ( select * from fa_total where iperiod=2 -order by sdeptnum,stypen
4、um ) bb on aa.sdeptnum=bb.sdeptnum and aa.stypenum=bb.stypenum where bb.dblyearvalue is null,分析過程,可以看到數(shù)據(jù)差異為:2440420.58=614369944.4-611929523.82,分析過程,查找差異的紀(jì)錄: select aa.* from ( select * from fa_total where iperiod=1 ) aa left join ( select * from fa_total where iperiod=2 ) bb on aa.sdeptnum=bb.sdept
5、num and aa.stypenum=bb.stypenum where bb.dblyearvalue is null,分析過程,明細(xì)記錄,分析過程,問題原因找到了:問題是如何修改,很明顯,數(shù)據(jù)表中丟失了或缺少了一些記錄: 每個(gè)月都有此情況,且記錄數(shù)不一樣,如何才能改對(duì),分析過程,以二月份為例: select aa.* into #depr2 from ( select * from fa_total where iperiod=1 ) aa left join ( select * from fa_total where iperiod=2 ) bb on aa.sdeptnum=bb.
6、sdeptnum and aa.stypenum=bb.stypenum where bb.dblyearvalue is null,分析過程,update #depr2 set iperiod=2 ,lmonthcount=0,dbllastaccrualvalue=0,dbllastdepr=0,dbllastaddvalue=0,dbllastdecvalue=0, dblmonthvalue=0,dblvalue=0,dblmonthdeprtotal=0,dbldeprtotal=0,dbladdvalue=0,dbldecvalue=0,dbltransindeprtotal=0,
7、 dbltransoutdeprtotal=0,dblaccrualvalue=0,dbldepr=0 insert into fa_total select * from #depr2,分析過程,其他月份類似修改: 2-12月份修改后,發(fā)現(xiàn)問題又來了: 發(fā)現(xiàn)有幾個(gè)月份的數(shù)據(jù)還是有問題,分析過程,查詢發(fā)現(xiàn)數(shù)據(jù)不對(duì),分析過程,查詢分析一下: select * from ( select * from fa_total where iperiod=1 ) aa inner join ( select * from fa_total where iperiod=6 ) bb on aa.sdeptn
8、um=bb.sdeptnum and aa.stypenum=bb.stypenum where aa.dblyearvaluebb.dblyearvalue,分析過程,可以看一下具體的差異記錄,解決方法,為零的數(shù)據(jù)肯定是錯(cuò)的,可以更新: update fa_total set fa_total.dblyearvalue=bb.dblyearvalue,fa_total.dblyeardeprtotal=bb.dblyeardeprtotal from fa_total inner join (select * from fa_total where iperiod=1 ) bb on fa_
9、total.sdeptnum=bb.sdeptnum and fa_total.stypenum=bb.stypenum where ( fa_total.dblyearvaluebb.dblyearvalue) and fa_total.iperiod=6,分析過程,再分析: select aa.sdeptnum,aa.stypenum,aa.dblyearvalue,bb.dblyearvalue from ( select * from fa_total where iperiod=1 ) aa inner join ( select * from fa_total where iperiod=6 ) bb on aa.sdeptnum=bb.sdeptnum and aa.stypenum=bb.stypenum where aa.dblyearvaluebb.dblyearvalue,分析過程,只剩下一條記錄不相等,分析過程,可以分析一下卡片數(shù)據(jù): select * from fa_cards where sdeptnum=01105 and stypenum=010301 and dinputdate2004-05-31,分析過程,可以看到,30620.0與51870.0的差額正
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 紙箱出售訂單合同范例
- 海運(yùn)委托合同范例
- 美分銷合同范例
- 紙盒合同范例范例制作
- 工程門購買合同范例
- 印刷鋁板銷售合同范例
- 蘭州山區(qū)路燈合同范例
- 銅陵職業(yè)技術(shù)學(xué)院《傳統(tǒng)中國畫研習(xí)》2023-2024學(xué)年第一學(xué)期期末試卷
- 完整版100以內(nèi)加減法混合運(yùn)算4000道136
- 桐城師范高等??茖W(xué)?!段C(jī)原理及接口技術(shù)A》2023-2024學(xué)年第一學(xué)期期末試卷
- 【政治】期末復(fù)習(xí)測試卷-2024-2025學(xué)年統(tǒng)編版道德與法治七年級(jí)上冊(cè)
- 【MOOC】英語科技文獻(xiàn)閱讀-哈爾濱工業(yè)大學(xué) 中國大學(xué)慕課MOOC答案
- 王維《山居秋暝》詩歌鑒賞與意境探究教學(xué)設(shè)計(jì)
- 社區(qū)婦聯(lián)2024工作計(jì)劃
- 華電筆試題庫
- 跨學(xué)科實(shí)踐活動(dòng)7+垃圾的分類與回收利用(教學(xué)設(shè)計(jì))九年級(jí)化學(xué)下冊(cè)同步高效課堂(人教版2024)
- 政治理論應(yīng)知應(yīng)會(huì)100題
- 中建深基坑工程土方開挖專項(xiàng)施工方案
- 廣東省廣州市越秀區(qū)2023-2024學(xué)年八年級(jí)上學(xué)期期末語文試題(解析版)
- 醫(yī)保專(兼)職管理人員的勞動(dòng)合同(2篇)
- 戰(zhàn)馬魂(2023年重慶A中考語文試卷記敘文閱讀題及答案)
評(píng)論
0/150
提交評(píng)論