多多福数据库升级.sql 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*多多福增量备份及多个备份目录*/
  2. -- 1.分店表;
  3. --判断表是否存在,不存在则创建;
  4. if not exists(select * from dbo.sysobjects where id = object_id(N'CatalogInfo') and objectproperty(id,'IsTable') = 1)
  5. begin
  6. create table [dbo].[CatalogInfo](
  7. [enable] [bit] default(1) not null, /* 是否启用该分店实例 */
  8. [branch] [nvarchar](24) not null, /* 分店名称 */
  9. [branchid] [nvarchar](32) not null, /* 分店id */
  10. [clgname] [nvarchar](24) not null, /* 数据库名 */
  11. [clgport] [int] default(0) null, /* 数据库映射端口 */
  12. [clgsource] [nvarchar](24) not null, /* 数据库源(地址) */
  13. [clgaccount] [nvarchar](24) not null, /* 数据库登陆账号 */
  14. [clgpassword] [nvarchar](16) not null, /* 数据库登陆密码 */
  15. /* 主键分店ID */
  16. constraint [PK_CatalogInfo] primary key clustered
  17. (
  18. [branchid] asc
  19. ) with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary],
  20. ) on [primary]
  21. end
  22. go
  23. -- 2.增量备份表;
  24. --判断表是否存在,不存在则创建;
  25. if not exists(select * from dbo.sysobjects where id = object_id(N'IncrementalBackup') and objectproperty(id,'IsTable') = 1)
  26. begin
  27. create table [dbo].[IncrementalBackup](
  28. [isbackup] [bit] default(0) not null, /* 备份状态:false未备份,true已备份 */
  29. [branchid] [nvarchar](32) not null, /* 分店ID */
  30. [opttime] datetime default(getdate()), /* 操作的时间 */
  31. [order] [nvarchar](32) not null, /* 操作的订单号 */
  32. [photoType] [tinyint] default(0) not null, /* 操作的相片类型 原片==1,初修片==2,精修片==3,设计片==4,原片备份==5,初修备份==6,精修备份==7,设计备份==8*/
  33. [content] [nvarchar](max) null, /* 增量内容,订单添加或修改的相片名称数组,以"|"作为分隔符 */
  34. [userid] [nvarchar](64) not null, /* 用户id (ftp服务端,直接用0表示) */
  35. [username] [nvarchar](16) not null, /* 用户名 (ftp使用"ftp")*/
  36. [baktime] datetime null, /* 备份完成的时间 */
  37. /* 联合主键 */
  38. constraint [PK_IncrementBackup] primary key clustered
  39. (
  40. [branchid] asc,
  41. [order] asc,
  42. [opttime] asc
  43. )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary],
  44. ) on [primary]
  45. end
  46. go
  47. -- 3.共享表;
  48. --判断表是否存在,不存在则创建;
  49. if not exists(select * from dbo.sysobjects where id = object_id(N'NetShareInfo') and objectproperty(id,'IsTable') = 1)
  50. begin
  51. create table [dbo].[NetShareInfo](
  52. [enable] [bit] default(1) not null, /* 启动状态:false禁用,true启用 */
  53. [branchid] [nvarchar](32) not null, /* 分店id(域名) */
  54. [sharePath] [nvarchar](64) not null, /* 共享目录名 */
  55. [mincapacity] [tinyint] default(5) not null, /* 共享目录所在硬盘的最小可用容量(单位G byte),当实际可用容量值小于该值时,停止使用硬盘 */
  56. [maxcapacity] [tinyint] default(35) not null, /* 共享目录所在硬盘的最大可用容量(单位G byte),当实际可用容量值小于该值时,使用下一共享目录 */
  57. [photoType] [tinyint] not null, /* 共享相片类型:原片==1,初修片==2,精修片==3,设计片==4,原片备份==5,初修备份==6,精修备份==7,设计备份==8 */
  58. [priority] [tinyint] default(1) not null, /* 某分店下,相同共享相片类型的多个共享目录的优先使用级别 */
  59. /* 主键 */
  60. constraint [PK_NetShareInfo] primary key clustered
  61. (
  62. --[branchid] asc,--只要共享目录作为主键;
  63. [sharePath] asc
  64. ) with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary],
  65. ) on [primary]
  66. end
  67. go
  68. --可用容量最小设置值为5G;
  69. alter table [dbo].[NetShareInfo] with check add check([mincapacity] >= 5)
  70. alter table [dbo].[NetShareInfo] with check add check([maxcapacity] >= 35)
  71. go
  72. --最低权限值为1,无上限;
  73. alter table [dbo].[NetShareInfo] with check add check([priority] >= 1)
  74. go
  75. -- 4.触发器
  76. if (object_id('tgr_photomanager_insert','tr') is not null)
  77. drop trigger tgr_photomanager_insert
  78. go
  79. create trigger tgr_photomanager_insert on dindan for insert--订单表插入数据时;
  80. as
  81. --提交事务;
  82. begin transaction
  83. declare @branchid nvarchar(32) --本店域名;
  84. declare @order nvarchar(24) --订单号;
  85. declare @status nvarchar(8) --订单的取件状态;
  86. --获取path中的域名值;
  87. select top 1 @branchid = path1 from [path]
  88. --获取inserted表更新的dindan数据;
  89. select @order = id, @status = status3 from inserted
  90. if ( @status = 'OK')
  91. insert into [dbo].[photoManager]([branchid],[order],[takestatus])values(@branchid,@order,1)
  92. else
  93. insert into [dbo].[photoManager]([branchid],[order],[takestatus])values(@branchid,@order,0)
  94. commit transaction
  95. go
  96. --update类型触发器;
  97. if (object_id('tgr_photomanager_update','tr') is not null)
  98. drop trigger tgr_photomanager_update
  99. go
  100. create trigger tgr_photomanager_update on dindan for update--订单表更新数据时;
  101. as
  102. begin transaction
  103. declare @branchid nvarchar(32) --本店域名;
  104. declare @order nvarchar(24) --订单号;
  105. declare @status nvarchar(8) --订单取件状态;
  106. declare @stime nvarchar(24) --订单取件时间;
  107. declare @count int --查询某订单在PhotoManager表中的数量;
  108. --获取path中的域名值;
  109. select top 1 @branchid = path1 from [path]
  110. --获取inserted表更新的dindan数据;
  111. select @order = id, @status = status3, @stime = time5 from inserted
  112. select @count=count(*) from photomanager where [order] = @order
  113. if ( @status = 'OK' and @count > 0 )
  114. update [photoManager] set [takestatus] = 1,[taketime] = @stime where [order] = @order -- 更新取件状态和取件时间;
  115. else if ( @status <> 'OK' and @count > 0 )
  116. update [photoManager] set [takestatus] = 0,[taketime] = @stime where [order] = @order -- 已取件后改回未取件;
  117. else if ( @status = 'OK' and @count = 0 )
  118. insert into [photoManager]([branchid],[order],[takestatus],[taketime])values(@branchid,@order,1,@stime) -- 无记录则补insert;
  119. else if ( @status <> 'OK' and @count = 0 )
  120. insert into [photoManager]([branchid],[order],[takestatus])values(@branchid,@order,0) -- 无记录则补insert;
  121. commit transaction
  122. go
  123. -- 取件表;
  124. --判断表是否存在,不存在则创建;
  125. if not exists(select * from dbo.sysobjects where id = object_id(N'PhotoManager') and objectproperty(id,'IsTable') = 1)
  126. begin
  127. create table [dbo].[PhotoManager](
  128. [branchid] [nvarchar](32) not null, /* 分店id */
  129. [order] [nvarchar](24) not null, /* 主键订单号(唯一) */
  130. [takestatus] [bit] default(0) not null, /* 取件状态:false未取,true已取 */
  131. [taketime] [nvarchar](24) null, /* 整个订单的取件时间 */
  132. [opdel] [bit] default(0) not null, /* 原片删除状态 */
  133. [epdel] [bit] default(0) not null, /* 初修删除状态 */
  134. [fpdel] [bit] default(0) not null, /* 精修删除状态 */
  135. [dpdel] [bit] default(0) not null, /* 设计删除状态 */
  136. [opbdel] [bit] default(0) not null, /* 原片备份删除状态 */
  137. [epbdel] [bit] default(0) not null, /* 初修备份删除状态 */
  138. [fpbdel] [bit] default(0) not null, /* 精修备份删除状态 */
  139. [dpbdel] [bit] default(0) not null, /* 设计备份删除状态 */
  140. [opdeltm] [nvarchar](24) null, /* 原片删除时间 */
  141. [epdeltm] [nvarchar](24) null, /* 初修删除时间 */
  142. [fpdeltm] [nvarchar](24) null, /* 精修删除时间 */
  143. [dpdeltm] [nvarchar](24) null, /* 设计删除时间 */
  144. [opbdeltm] [nvarchar](24) null, /* 原片备份删除时间 */
  145. [epbdeltm] [nvarchar](24) null, /* 初修备份删除时间 */
  146. [fpbdeltm] [nvarchar](24) null, /* 精修备份删除时间 */
  147. [dpbdeltm] [nvarchar](24) null, /* 设计备份删除时间 */
  148. /* 主键订单号*/
  149. constraint [PK_PhotoManager] primary key clustered
  150. (
  151. [branchid] asc,
  152. [order] asc
  153. ) with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on,allow_page_locks = on) on [primary],
  154. ) on [primary]
  155. end
  156. go
  157. --更新dindan表,使之更新PhotoManager表;
  158. select identity(int,1,1) as autoid, id, VisitTime8 into #temp1 from dindan
  159. declare @maxid int
  160. declare @id nvarchar(50)
  161. declare @v8 nvarchar(20)
  162. select @maxid = max(autoid) from #temp1
  163. while @maxid > 0
  164. begin
  165. select @id = id, @v8 = VisitTime8 from #temp1 where autoid = @maxid
  166. update dindan set VisitTime8 = VisitTime8 where id = @id
  167. set @maxid = @maxid -1
  168. end
  169. drop table #temp1