跨年处理.sql 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. --select count(*) as cot from dindan where time1>='201-01-01' and time1<='2014-12-31' and status3='OK'
  2. --跨年时,第一步将当前主数据库的记录插入到去年的数据库中;
  3. --1.dindansp表;
  4. set IDENTITY_INSERT [db].[dbo].[dindansp] ON
  5. insert into [db].[dbo].[dindansp]
  6. ([id]
  7. ,[spid]
  8. ,[shuliang]
  9. ,[kind]
  10. ,[price]
  11. ,[name]
  12. ,[no]
  13. ,[status1]
  14. ,[status2]
  15. ,[status3]
  16. ,[status4]
  17. ,[autoid]
  18. ,[date1]
  19. ,[date2]
  20. ,[date3]
  21. ,[date4]
  22. ,[name1]
  23. ,[name2]
  24. ,[name3]
  25. ,[name4]
  26. ,[hqdate]
  27. ,[hqtime]
  28. ,[urgent]
  29. ,[taketime]
  30. ,[no2]
  31. ,[status5]
  32. ,[status6]
  33. ,[date5]
  34. ,[date6]
  35. ,[name5]
  36. ,[name6]
  37. ,[growthtxname]
  38. ,[ps]
  39. ,[zs]
  40. ,[ren1]
  41. ,[ren2]
  42. ,[hqstatus]
  43. ,[bz]) select * from [back].[dbo].[dindansp] where id='111111'
  44. SET IDENTITY_INSERT [db].[dbo].[dindansp] OFF
  45. --2.dindanbukuan表;
  46. set IDENTITY_INSERT [db].[dbo].[dindanbukuan] ON
  47. insert into [db].[dbo].[dindanbukuan] ([autoid],[id],[money],[ren],[date],[bz],[kind],[ren2],[item],[paytype],[jdd],[financecheck]) select [autoid],[id],[money],[ren],[date],[bz],[kind],[ren2],[item],[paytype],[jdd],[financecheck] from [back].[dbo].[dindanbukuan] where id='111111'
  48. SET IDENTITY_INSERT [db].[dbo].[dindanbukuan] OFF
  49. --3.dindanbukuan2表;
  50. set IDENTITY_INSERT [db].[dbo].[dindanbukuan2] ON
  51. insert into [db].[dbo].[dindanbukuan2] ([autoid],[id],[money],[ren],[date],[bz],[kind],[ren2]) select [autoid],[id],[money],[ren],[date],[bz],[kind],[ren2] from [back].[dbo].[dindanbukuan2] where id='111111'
  52. SET IDENTITY_INSERT [db].[dbo].[dindanbukuan2] OFF
  53. --4.dindan表;
  54. insert into [db].[dbo].[dindan] select * from [back].[dbo].[dindan] where id='111111'
  55. --5.photoprint表;
  56. insert into [db].[dbo].[photoprint] select * from [back].[dbo].[photoprint] where id='111111'
  57. --6.client表;
  58. insert into [db].[dbo].[client] select * from [back].[dbo].[client] where id='111111'
  59. --7.burncdreg表;
  60. insert into [db].[dbo].[burncdreg] select * from [back].[dbo].[burncdreg] where id='111111'
  61. --8.digitalwork表;
  62. insert into [db].[dbo].[digitalwork] select * from [back].[dbo].[digitalwork] where id='111111'
  63. --9.mywork;
  64. insert into [db].[dbo].[mywork] select * from [back].[dbo].[mywork] where id='111111'
  65. --10.dindanjd表;
  66. insert into [db].[dbo].[dindanjd] select * from [back].[dbo].[dindanjd] where id='111111'
  67. --11.dindansp2表;
  68. insert into [db].[dbo].[dindansp2] select * from [back].[dbo].[dindansp2] where id='111111'
  69. --12.dindansp3表;
  70. insert into [db].[dbo].[dindansp3] select * from [back].[dbo].[dindansp3] where id='111111'
  71. --跨年时,第二步当第一步成功时,开始删除当前数据库里的记录;
  72. --1.dindan表;
  73. delete from dindan where id = '' ;
  74. --2.dindansp表;
  75. delete from dindansp where id = '' ;
  76. --3.photoprint表
  77. delete from photoprint where id = ''
  78. --4.dindanbukuan表
  79. delete from dindanbukuan where id = ''
  80. --5.dindanbukuan2表
  81. delete from dindanbukuan2 where id = ''
  82. --6.client表
  83. delete from client where id = ''
  84. --7.burncdreg表
  85. delete from burncdreg where id = ''
  86. --8.digitalwork表
  87. delete from digitalwork where id = ''
  88. --9.mywork表
  89. delete from mywork where id = ''
  90. --10.dindansp表
  91. delete from dindansp where id =''
  92. --11.dindansp2表
  93. delete from dindansp2 where id = ''
  94. --12.dindansp3表
  95. delete from dindansp3 where id = ''
  96. --跨年时,第三步处理账务方面;
  97. --1.gudingfeiyong表,支出;
  98. --1.1.获取gudingfeiyong表的所有记录;
  99. select count(*) as cot from gudingfeiyong where dat >= '2014-01-01' and dat <= '2014-12-31'
  100. --1.2.将当前数据库的数据插入到跨年数据库中;
  101. insert into [db].[dbo].[gudingfeiyong] select * from [back].[dbo].[gudingfeiyong] where id='111111'
  102. --1.3.删除当前数据库的记录;
  103. delete from gudingfeiyong where id =''
  104. --2.singleincome表,其他收入;
  105. --2.1.获取singleincome表的所有记录;
  106. select count(*) as cot from singleincome where dat >= '2014-01-01' and dat <= '2014-12-31'
  107. --2.2.将当前数据库的数据插入到跨年数据库中;
  108. insert into [2014].[dbo].[singleincome] select * from [db].[dbo].[singleincome] where id = ''
  109. insert into [2014].[dbo].[singleincomemoney] select * from [db].[dbo].[singleincomemoney] where id = ''
  110. --2.3.删除当前数据库的记录;
  111. delete from singleincome where id = ''
  112. delete from singleincomemoney where id = ''
  113. --3.singleincomemoney其他二销表
  114. --3.1.获取singleincomemoney表的所有记录;
  115. select count(*) as cot from singleincomemoney where id not in(select id from singleincome)
  116. --3.2.将当前数据库的数据插入到跨年数据库中;
  117. insert into [2014].[dbo].[singleincomemoney] select * from [db].[dbo].[singleincomemoney] where id =''
  118. --3.3.删除当前数据库的记录;
  119. delete from singleincomemoney where [id] = ''
  120. --4.client2phonerecord表;
  121. --4.1.获取singleincomemoney表的所有记录;
  122. select count(*) as cot from client2phonerecord where [datetime]>= '2014-01-01 00:00:00' and [datetime] <= '2014-12-31 99:99:99'
  123. --4.2.将当前数据库的数据插入到跨年数据库中;
  124. insert into [%d].[dbo].[client2phonerecord] select * from [%s].[dbo].[client2phonerecord] where [datetime]=''
  125. --4.3.删除当前数据库的记录;
  126. delete from client2phonerecord where [datetime]=''
  127. --5.client2phonerecordout表;
  128. --5.1.获取client2phonerecordout表的记录;
  129. select count(*) as cot from client2phonerecordout where [datetime]>= '2014-01-01 00:00:00' and [datetime] <= '2014-12-31 99:99:99'
  130. --5.2.将当前数据库的数据插入到跨年数据库中;
  131. insert into [%d].[dbo].[client2phonerecordout] select * from [%s].[dbo].[client2phonerecordout] where [datetime]='%s'
  132. --5.3.删除当前数据库里的记录;
  133. delete from client2phonerecordout where [datetime]='%s'
  134. --6.client3phonerecord表;
  135. --6.1.获取client3phonerecord表的记录;
  136. select count(*) as cot from client3phonerecord where [datetime]>= '2014-01-01 00:00:00' and [datetime] <= '2014-12-31 99:99:99'
  137. --6.2.将当前数据库的数据插入到跨年数据库中;
  138. insert into [%d].[dbo].[client3phonerecord] select * from [%s].[dbo].[client3phonerecord] where [datetime]='%s'
  139. --6.3.删除当前数据库里的记录;
  140. delete from client3phonerecord where [datetime]='%s'
  141. --7.client3phonerecordout表;
  142. --7.1.获取client3phonerecordout表的记录;
  143. select count(*) as cot from client3phonerecordout where [datetime]>= '2014-01-01 00:00:00' and [datetime] <= '2014-12-31 99:99:99'
  144. --7.2.将当前数据库的数据插入到跨年数据库中;
  145. insert into [%d].[dbo].[client3phonerecordout] select * from [%s].[dbo].[client3phonerecordout] where [datetime]='%s'
  146. --7.3.删除当前数据库里的记录;
  147. delete from client3phonerecordout where [datetime]='%s'
  148. --8.employeephonerecord表;
  149. --8.1.获取employeephonerecord表的记录;
  150. select count(*) as cot from employeephonerecord where [datetime]>= '2014-01-01 00:00:00' and [datetime] <= '2014-12-31 99:99:99'
  151. --8.2.将当前数据库的数据插入到跨年数据库中;
  152. insert into [%d].[dbo].[employeephonerecord] select * from [%s].[dbo].[employeephonerecord] where [datetime]='%s'
  153. --8.3.删除当前数据库里的记录;
  154. delete from employeephonerecord where [datetime]='%s'
  155. --9.employeephonerecordout表;
  156. --9.1.获取employeephonerecordout表的记录;
  157. select count(*) as cot from employeephonerecordout where [datetime]>= '2014-01-01 00:00:00' and [datetime] <= '2014-12-31 99:99:99'
  158. --9.2.将当前数据库的数据插入到跨年数据库中;
  159. insert into [%d].[dbo].[employeephonerecordout] select * from [%s].[dbo].[employeephonerecordout] where [datetime]='%s'
  160. --9.3.删除当前数据库里的记录;
  161. delete from employeephonerecordout where [datetime]='%s'
  162. --10.phonerecord表;
  163. --10.1.获取phonerecord表的记录;
  164. select count(*) as cot from phonerecord where [datetime]>= '2014-01-01 00:00:00' and [datetime] <= '2014-12-31 99:99:99'
  165. --10.2.将当前数据库的数据插入到跨年数据库中;
  166. insert into [%d].[dbo].[phonerecord] select * from [%s].[dbo].[phonerecord] where [datetime]='%s'
  167. --10.3.删除当前数据库里的记录;
  168. delete from phonerecord where [datetime]='%s'
  169. --11.phonerecordout表;
  170. --11.1.获取phonerecordout表的记录;
  171. select count(*) as cot from phonerecordout where [datetime]>= '2014-01-01 00:00:00' and [datetime] <= '2014-12-31 99:99:99'
  172. --11.2.将当前数据库的数据插入到跨年数据库中;
  173. insert into [%d].[dbo].[phonerecordout] select * from [%s].[dbo].[phonerecordout] where [datetime]='%s'
  174. --11.3.删除当前数据库里的记录;
  175. delete from phonerecordout where datetime='%s'
  176. --12.unknownphonerecord表;
  177. --12.1.获取unknownphonerecord表的记录;
  178. select count(*) as cot from unknownphonerecord where [datetime]>= '2014-01-01 00:00:00' and [datetime] <= '2014-12-31 99:99:99'
  179. --12.2.将当前数据库的数据插入到跨年数据库中;
  180. insert into [%d].[dbo].[unknownphonerecord] select * from [%s].[dbo].[unknownphonerecord] where [datetime]='%s'
  181. --12.3.删除当前数据库里的记录;
  182. delete from unknownphonerecord where [datetime]='%s'
  183. --13.unknownphonerecordout表;
  184. --13.1.获取unknownphonerecordout表的记录;
  185. select count(*) as cot from unknownphonerecordout where [datetime]>= '2014-01-01 00:00:00' and [datetime] <= '2014-12-31 99:99:99'
  186. --13.2.将当前数据库的数据插入到跨年数据库中;
  187. insert into [%d].[dbo].[unknownphonerecordout] select * from [%s].[dbo].[unknownphonerecordout] where [datetime]='%s'
  188. --13.3.删除当前数据库里的记录;
  189. delete from unknownphonerecordout where [datetime]='%s'
  190. --14.misscallrecord表;
  191. --14.1.获取misscallrecord表的记录;
  192. select count(*) as cot from misscallrecord where [datetime]>= '2014-01-01 00:00:00' and [datetime] <= '2014-12-31 99:99:99'
  193. --14.2.将当前数据库的数据插入到跨年数据库中;
  194. insert into [%d].[dbo].[misscallrecord] select * from [%s].[dbo].[misscallrecord] where [datetime]='%s'
  195. --14.3.删除当前数据库里的记录;
  196. delete from misscallrecord where [datetime]='%s'
  197. --15.sendreg表;
  198. --15.1.获取sendreg表的记录;
  199. select count(*) as cot from sendreg where [timestamp]>= '20140101000000' and [timestamp] <= '20141231999999' and issended='OK'
  200. --15.2.将当前数据库的数据插入到跨年数据库中;
  201. insert into [%d].[dbo].[sendreg] select * from [%s].[dbo].[sendreg] where [timestamp]='%s'
  202. --15.3.删除当前数据库里的记录;
  203. delete from sendreg where [timestamp]='%s'