-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsql-0.sql
425 lines (374 loc) · 13.2 KB
/
sql-0.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
if exists (select 1
from sysobjects
where id = object_id('extenduser')
and type = 'U')
drop table extenduser
go
if exists (select 1
from sysindexes
where id = object_id('feedbacks')
and name = 'i_status'
and indid > 0
and indid < 255)
drop index feedbacks.i_status
go
if exists (select 1
from sysindexes
where id = object_id('feedbacks')
and name = 'i_app'
and indid > 0
and indid < 255)
drop index feedbacks.i_app
go
if exists (select 1
from sysindexes
where id = object_id('feedbacks')
and name = 'i_type'
and indid > 0
and indid < 255)
drop index feedbacks.i_type
go
if exists (select 1
from sysindexes
where id = object_id('feedbacks')
and name = 'i_date'
and indid > 0
and indid < 255)
drop index feedbacks.i_date
go
if exists (select 1
from sysobjects
where id = object_id('feedbacks')
and type = 'U')
drop table feedbacks
go
if exists (select 1
from sysindexes
where id = object_id('logs')
and name = 'i_closed'
and indid > 0
and indid < 255)
drop index logs.i_closed
go
if exists (select 1
from sysindexes
where id = object_id('logs')
and name = 'i_type'
and indid > 0
and indid < 255)
drop index logs.i_type
go
if exists (select 1
from sysindexes
where id = object_id('logs')
and name = 'i_hash'
and indid > 0
and indid < 255)
drop index logs.i_hash
go
if exists (select 1
from sysindexes
where id = object_id('logs')
and name = 'i_app'
and indid > 0
and indid < 255)
drop index logs.i_app
go
if exists (select 1
from sysindexes
where id = object_id('logs')
and name = 'i_date'
and indid > 0
and indid < 255)
drop index logs.i_date
go
if exists (select 1
from sysobjects
where id = object_id('logs')
and type = 'U')
drop table logs
go
if exists (select 1
from sysindexes
where id = object_id('userping')
and name = 'i_app'
and indid > 0
and indid < 255)
drop index userping.i_app
go
if exists (select 1
from sysindexes
where id = object_id('userping')
and name = 'i_date'
and indid > 0
and indid < 255)
drop index userping.i_date
go
if exists (select 1
from sysobjects
where id = object_id('userping')
and type = 'U')
drop table userping
go
/*==============================================================*/
/* Table : extenduser */
/*==============================================================*/
create table extenduser (
userid uniqueidentifier not null,
"key" varchar(64) not null,
value nvarchar(512) not null,
constraint pk_extenduser primary key (userid, "key")
)
go
declare @currentuser sysname
select @currentuser = user_name()
execute sys.sp_addextendedproperty 'MS_Description',
'User Extension Table of ASP.Net Identity Model',
'user', @currentuser, 'table', 'extenduser'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Id comes from ASP.Net identity model, convert in GUID for Shitsuke',
'user', @currentuser, 'table', 'extenduser', 'column', 'userid'
go
/*==============================================================*/
/* Table : feedbacks */
/*==============================================================*/
create table feedbacks (
id bigint identity,
applicationid char(8) not null,
utctimestamp datetime not null default getdate(),
type tinyint not null default 0,
status tinyint not null default 0,
comments nvarchar(2048) not null,
userid nvarchar(128) not null,
pageid varchar(128) null,
browserinfo varchar(1024) null,
screenshot image null,
constraint pk_feedbacks primary key (id)
)
go
declare @currentuser sysname
select @currentuser = user_name()
execute sys.sp_addextendedproperty 'MS_Description',
'Feedbacks created by users',
'user', @currentuser, 'table', 'feedbacks'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Created Date (UTC)',
'user', @currentuser, 'table', 'feedbacks', 'column', 'utctimestamp'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Feedback Type : Bug, Feedback, Question...',
'user', @currentuser, 'table', 'feedbacks', 'column', 'type'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Current status of feedback : new, open..',
'user', @currentuser, 'table', 'feedbacks', 'column', 'status'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Feedback written by user',
'user', @currentuser, 'table', 'feedbacks', 'column', 'comments'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Json Object contains some info on browser',
'user', @currentuser, 'table', 'feedbacks', 'column', 'browserinfo'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Screenshot take by user (convert from Base64 image)',
'user', @currentuser, 'table', 'feedbacks', 'column', 'screenshot'
go
/*==============================================================*/
/* Index : i_date */
/*==============================================================*/
create index i_date on feedbacks (
utctimestamp asc
)
go
/*==============================================================*/
/* Index : i_type */
/*==============================================================*/
create index i_type on feedbacks (
type asc
)
go
/*==============================================================*/
/* Index : i_app */
/*==============================================================*/
create index i_app on feedbacks (
applicationid asc
)
go
/*==============================================================*/
/* Index : i_status */
/*==============================================================*/
create index i_status on feedbacks (
status asc
)
go
/*==============================================================*/
/* Table : logs */
/*==============================================================*/
create table logs (
id bigint identity,
applicationid char(8) not null,
isclosed bit not null default 0,
machinename varchar(64) not null,
creationdate datetime not null,
type varchar(128) not null,
errorlevel tinyint not null default 0,
statuscode int null,
errorhash int null,
host varchar(128) null,
url varchar(512) null,
httpmethod varchar(8) null,
ipaddress varchar(64) null,
source nvarchar(128) null,
message nvarchar(1024) null,
detail nvarchar(max) null,
sql nvarchar(max) null,
fulljson nvarchar(max) null,
constraint pk_logs primary key (id)
)
go
declare @currentuser sysname
select @currentuser = user_name()
execute sys.sp_addextendedproperty 'MS_Description',
'Event logs created by applications ',
'user', @currentuser, 'table', 'logs'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'True if this Logs launch an corrective action (eg : create a bug based on)',
'user', @currentuser, 'table', 'logs', 'column', 'isclosed'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Http Status Code',
'user', @currentuser, 'table', 'logs', 'column', 'statuscode'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Hashcode of the error, use for group faster duplicate logs',
'user', @currentuser, 'table', 'logs', 'column', 'errorhash'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Source code of logs',
'user', @currentuser, 'table', 'logs', 'column', 'source'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'SQL Error if it exists',
'user', @currentuser, 'table', 'logs', 'column', 'sql'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Full json of logs : should be move in other table and use the new SQL 2016 json fied type',
'user', @currentuser, 'table', 'logs', 'column', 'fulljson'
go
/*==============================================================*/
/* Index : i_date */
/*==============================================================*/
create index i_date on logs (
creationdate asc
)
go
/*==============================================================*/
/* Index : i_app */
/*==============================================================*/
create index i_app on logs (
applicationid asc
)
go
/*==============================================================*/
/* Index : i_hash */
/*==============================================================*/
create index i_hash on logs (
errorhash asc
)
go
/*==============================================================*/
/* Index : i_type */
/*==============================================================*/
create index i_type on logs (
type asc
)
go
/*==============================================================*/
/* Index : i_closed */
/*==============================================================*/
create index i_closed on logs (
isclosed asc
)
go
/*==============================================================*/
/* Table : userping */
/*==============================================================*/
create table userping (
id bigint identity,
applicationid char(8) not null,
utctimestamp datetime not null,
userid nvarchar(128) not null,
pageid varchar(128) null,
browerinfo varchar(1024) null,
constraint pk_userping primary key nonclustered (id)
)
go
declare @currentuser sysname
select @currentuser = user_name()
execute sys.sp_addextendedproperty 'MS_Description',
'Ping information from users',
'user', @currentuser, 'table', 'userping'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Application ID',
'user', @currentuser, 'table', 'userping', 'column', 'applicationid'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'Created Date (UTC)',
'user', @currentuser, 'table', 'userping', 'column', 'utctimestamp'
go
declare @currentuser sysname
select @currentuser = user_name()
execute sp_addextendedproperty 'MS_Description',
'User Id from app',
'user', @currentuser, 'table', 'userping', 'column', 'userid'
go
/*==============================================================*/
/* Index : i_date */
/*==============================================================*/
create clustered index i_date on userping (
utctimestamp asc
)
go
/*==============================================================*/
/* Index : i_app */
/*==============================================================*/
create index i_app on userping (
applicationid asc
)
go