TruncateReduplicateRecord .sql 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. --由于历史数据库表结构与主数据库不一样,
  2. --主数据库表有索引,但历史数据库许多表没有添加唯一索引,造成历史数据库重复数据一大片
  3. --在修复历史数据结构前,先要清除重复的记录,只留一条;
  4. use [2014]
  5. --1.client表,主数据库有唯一索引,清除2014多余的重复记录;
  6. --image字段不能distinct;
  7. if exists(select name from syscolumns where id=object_id('client') and name='photo')
  8. alter table [client] drop column [photo]
  9. go
  10. select distinct * into #temp from client
  11. go
  12. drop table client
  13. go
  14. select * into client from #temp
  15. go
  16. drop table #temp
  17. go
  18. --2.dindansp表
  19. --忽略,主数据库无唯一索引;
  20. go
  21. select distinct * into #temp from dindansp
  22. go
  23. drop table dindansp
  24. go
  25. select * into dindansp from #temp
  26. go
  27. drop table #temp
  28. go
  29. --3.photoprint表
  30. --忽略,主数据库无唯一索引;
  31. go
  32. select distinct * into #temp from photoprint
  33. go
  34. drop table photoprint
  35. go
  36. select * into photoprint from #temp
  37. go
  38. drop table #temp
  39. go
  40. --4.dindanbukuan表
  41. --忽略,主数据库无唯一索引;
  42. go
  43. select distinct * into #temp from dindanbukuan
  44. go
  45. drop table dindanbukuan
  46. go
  47. select * into dindanbukuan from #temp
  48. go
  49. drop table #temp
  50. go
  51. --5.dindanbukuan2表
  52. --忽略,主数据库无唯一索引;
  53. go
  54. select distinct * into #temp from dindanbukuan2
  55. go
  56. drop table dindanbukuan2
  57. go
  58. select * into dindanbukuan2 from #temp
  59. go
  60. drop table #temp
  61. go
  62. --6.dindan表
  63. --忽略,主数据库无唯一索引;
  64. go
  65. select distinct * into #temp from dindan
  66. go
  67. drop table dindan
  68. go
  69. select * into dindan from #temp
  70. go
  71. drop table #temp
  72. go
  73. --7.burncdreg表
  74. --忽略,主数据库无唯一索引;
  75. go
  76. select distinct * into #temp from burncdreg
  77. go
  78. drop table burncdreg
  79. go
  80. select * into burncdreg from #temp
  81. go
  82. drop table #temp
  83. go
  84. --8.digitalwork表
  85. --忽略,主数据库无唯一索引;
  86. go
  87. select distinct * into #temp from digitalwork
  88. go
  89. drop table digitalwork
  90. go
  91. select * into digitalwork from #temp
  92. go
  93. drop table #temp
  94. go
  95. --9.mywork表
  96. --忽略,主数据库无唯一索引;
  97. go
  98. select distinct * into #temp from mywork
  99. go
  100. drop table mywork
  101. go
  102. select * into mywork from #temp
  103. go
  104. drop table #temp
  105. go
  106. --10.dindanjd表
  107. --忽略,主数据库无唯一索引;
  108. go
  109. select distinct * into #temp from dindanjd
  110. go
  111. drop table dindanjd
  112. go
  113. select * into dindanjd from #temp
  114. go
  115. drop table #temp
  116. go
  117. --11.dindansp2表
  118. --忽略,主数据库无唯一索引;
  119. go
  120. select distinct * into #temp from dindansp2
  121. go
  122. drop table dindansp2
  123. go
  124. select * into dindansp2 from #temp
  125. go
  126. drop table #temp
  127. go
  128. --12.dindansp3表
  129. --忽略,主数据库无唯一索引;
  130. go
  131. select distinct * into #temp from dindansp3
  132. go
  133. drop table dindansp3
  134. go
  135. select * into dindansp3 from #temp
  136. go
  137. drop table #temp
  138. go
  139. --13.singleincome表
  140. --忽略,主数据库无唯一索引;
  141. go
  142. select distinct * into #temp from singleincome
  143. go
  144. drop table singleincome
  145. go
  146. select * into singleincome from #temp
  147. go
  148. drop table #temp
  149. go
  150. --14.singleincomemoney表
  151. --忽略,主数据库无唯一索引;
  152. go
  153. select distinct * into #temp from singleincomemoney
  154. go
  155. drop table singleincomemoney
  156. go
  157. select * into singleincomemoney from #temp
  158. go
  159. drop table #temp
  160. go