-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDbScript.sql
502 lines (499 loc) · 32.3 KB
/
DbScript.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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
USE [HobimDestekTalepDB]
GO
/****** Object: Table [dbo].[Personel] Script Date: 11/11/2018 2:41:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Personel](
[PersonelID] [int] IDENTITY(1,1) NOT NULL,
[PersonelAdiSoyadi] [nvarchar](50) NULL,
[DepartmanID] [int] NULL,
CONSTRAINT [PK_Personel] PRIMARY KEY CLUSTERED
(
[PersonelID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[Kullanici] Script Date: 11/11/2018 2:41:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Kullanici](
[KullaniciID] [int] IDENTITY(1,1) NOT NULL,
[KullaniciAdi] [nchar](50) NULL,
[KullaniciSifre] [nvarchar](50) NULL,
[KullaniciRol] [nvarchar](50) NULL,
[PersonelID] [int] NULL,
CONSTRAINT [PK_Kullanici] PRIMARY KEY CLUSTERED
(
[KullaniciID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: View [dbo].[VwKulPer] Script Date: 11/11/2018 2:41:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[VwKulPer]
AS
SELECT dbo.Kullanici.KullaniciID, dbo.Kullanici.KullaniciAdi, dbo.Kullanici.KullaniciSifre, dbo.Kullanici.KullaniciRol, dbo.Personel.PersonelID, dbo.Personel.PersonelAdiSoyadi, dbo.Personel.DepartmanID
FROM dbo.Kullanici INNER JOIN
dbo.Personel ON dbo.Kullanici.PersonelID = dbo.Personel.PersonelID
GO
/****** Object: Table [dbo].[Departman] Script Date: 11/11/2018 2:41:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Departman](
[DepartmanID] [int] NOT NULL,
[DepartmanAdi] [nvarchar](50) NULL,
CONSTRAINT [PK_Departman] PRIMARY KEY CLUSTERED
(
[DepartmanID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: View [dbo].[VwKulPerDep] Script Date: 11/11/2018 2:41:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[VwKulPerDep]
AS
SELECT dbo.Personel.PersonelID, dbo.Kullanici.KullaniciID, dbo.Kullanici.KullaniciAdi, dbo.Kullanici.KullaniciSifre, dbo.Kullanici.KullaniciRol, dbo.Departman.DepartmanAdi, dbo.Departman.DepartmanID, dbo.Personel.PersonelAdiSoyadi
FROM dbo.Departman INNER JOIN
dbo.Personel ON dbo.Departman.DepartmanID = dbo.Personel.DepartmanID INNER JOIN
dbo.Kullanici ON dbo.Personel.PersonelID = dbo.Kullanici.PersonelID
GO
/****** Object: Table [dbo].[Talep] Script Date: 11/11/2018 2:41:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Talep](
[TalepID] [int] IDENTITY(1,1) NOT NULL,
[TalepIcerik] [nvarchar](200) NULL,
[TalepTuru] [nvarchar](50) NULL,
[TalepTarihi] [datetime] NULL,
[PersonelID] [int] NULL,
[TalepDurumu] [nvarchar](50) NULL,
CONSTRAINT [PK_Talep] PRIMARY KEY CLUSTERED
(
[TalepID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: View [dbo].[VwDepTal] Script Date: 11/11/2018 2:41:09 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[VwDepTal]
AS
SELECT dbo.Talep.TalepID, dbo.Talep.TalepIcerik, dbo.Talep.TalepTuru, dbo.Talep.TalepTarihi, dbo.Departman.DepartmanID, dbo.Departman.DepartmanAdi, dbo.Talep.TalepDurumu
FROM dbo.Departman CROSS JOIN
dbo.Talep
GO
INSERT [dbo].[Departman] ([DepartmanID], [DepartmanAdi]) VALUES (1, N'Yazılım')
SET IDENTITY_INSERT [dbo].[Kullanici] ON
INSERT [dbo].[Kullanici] ([KullaniciID], [KullaniciAdi], [KullaniciSifre], [KullaniciRol], [PersonelID]) VALUES (2, N'admin ', N'admin', N'Admin', 1)
INSERT [dbo].[Kullanici] ([KullaniciID], [KullaniciAdi], [KullaniciSifre], [KullaniciRol], [PersonelID]) VALUES (3, N'umit ', N'umit', N'Normal', 1)
INSERT [dbo].[Kullanici] ([KullaniciID], [KullaniciAdi], [KullaniciSifre], [KullaniciRol], [PersonelID]) VALUES (4, N'yonetici ', N'yonetici', N'Yönetici', 1)
INSERT [dbo].[Kullanici] ([KullaniciID], [KullaniciAdi], [KullaniciSifre], [KullaniciRol], [PersonelID]) VALUES (5, N'aozgunduz ', N'aozgunduz', N'Normal', 2)
SET IDENTITY_INSERT [dbo].[Kullanici] OFF
SET IDENTITY_INSERT [dbo].[Personel] ON
INSERT [dbo].[Personel] ([PersonelID], [PersonelAdiSoyadi], [DepartmanID]) VALUES (1, N'Ümit Akıncı', 1)
INSERT [dbo].[Personel] ([PersonelID], [PersonelAdiSoyadi], [DepartmanID]) VALUES (2, N'Aykut Özgündüz', 1)
SET IDENTITY_INSERT [dbo].[Personel] OFF
SET IDENTITY_INSERT [dbo].[Talep] ON
INSERT [dbo].[Talep] ([TalepID], [TalepIcerik], [TalepTuru], [TalepTarihi], [PersonelID], [TalepDurumu]) VALUES (1, N'Bilgisayar bozuk', N'Donanım Arıza', CAST(N'2018-10-17T13:25:19.933' AS DateTime), 1, N'Bekleniyor')
INSERT [dbo].[Talep] ([TalepID], [TalepIcerik], [TalepTuru], [TalepTarihi], [PersonelID], [TalepDurumu]) VALUES (2, N'Masa kırık', N'Diğer', CAST(N'2018-10-17T14:15:02.220' AS DateTime), 1, N'Bekleniyor')
INSERT [dbo].[Talep] ([TalepID], [TalepIcerik], [TalepTuru], [TalepTarihi], [PersonelID], [TalepDurumu]) VALUES (3, N'monitör lazım', N'Donanım İstek', CAST(N'2018-10-31T15:25:08.257' AS DateTime), 1, N'Bekleniyor')
INSERT [dbo].[Talep] ([TalepID], [TalepIcerik], [TalepTuru], [TalepTarihi], [PersonelID], [TalepDurumu]) VALUES (4, N'test', N'Diğer', CAST(N'2018-10-31T16:38:48.017' AS DateTime), 2, N'Bekleniyor')
SET IDENTITY_INSERT [dbo].[Talep] OFF
ALTER TABLE [dbo].[Kullanici] WITH CHECK ADD FOREIGN KEY([PersonelID])
REFERENCES [dbo].[Personel] ([PersonelID])
GO
ALTER TABLE [dbo].[Personel] WITH CHECK ADD FOREIGN KEY([DepartmanID])
REFERENCES [dbo].[Departman] ([DepartmanID])
GO
ALTER TABLE [dbo].[Talep] WITH CHECK ADD FOREIGN KEY([PersonelID])
REFERENCES [dbo].[Talep] ([TalepID])
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties =
Begin PaneConfigurations =
Begin PaneConfiguration = 0
NumPanes = 4
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
End
Begin PaneConfiguration = 1
NumPanes = 3
Configuration = "(H (1 [50] 4 [25] 3))"
End
Begin PaneConfiguration = 2
NumPanes = 3
Configuration = "(H (1 [50] 2 [25] 3))"
End
Begin PaneConfiguration = 3
NumPanes = 3
Configuration = "(H (4 [30] 2 [40] 3))"
End
Begin PaneConfiguration = 4
NumPanes = 2
Configuration = "(H (1 [56] 3))"
End
Begin PaneConfiguration = 5
NumPanes = 2
Configuration = "(H (2 [66] 3))"
End
Begin PaneConfiguration = 6
NumPanes = 2
Configuration = "(H (4 [50] 3))"
End
Begin PaneConfiguration = 7
NumPanes = 1
Configuration = "(V (3))"
End
Begin PaneConfiguration = 8
NumPanes = 3
Configuration = "(H (1[56] 4[18] 2) )"
End
Begin PaneConfiguration = 9
NumPanes = 2
Configuration = "(H (1 [75] 4))"
End
Begin PaneConfiguration = 10
NumPanes = 2
Configuration = "(H (1[66] 2) )"
End
Begin PaneConfiguration = 11
NumPanes = 2
Configuration = "(H (4 [60] 2))"
End
Begin PaneConfiguration = 12
NumPanes = 1
Configuration = "(H (1) )"
End
Begin PaneConfiguration = 13
NumPanes = 1
Configuration = "(V (4))"
End
Begin PaneConfiguration = 14
NumPanes = 1
Configuration = "(V (2))"
End
ActivePaneConfig = 0
End
Begin DiagramPane =
Begin Origin =
Top = 0
Left = 0
End
Begin Tables =
Begin Table = "Departman"
Begin Extent =
Top = 7
Left = 48
Bottom = 126
Right = 242
End
DisplayFlags = 280
TopColumn = 0
End
Begin Table = "Talep"
Begin Extent =
Top = 7
Left = 290
Bottom = 170
Right = 484
End
DisplayFlags = 280
TopColumn = 2
End
End
End
Begin SQLPane =
End
Begin DataPane =
Begin ParameterDefaults = ""
End
End
Begin CriteriaPane =
Begin ColumnWidths = 11
Column = 1440
Alias = 900
Table = 1176
Output = 720
Append = 1400
NewValue = 1170
SortType = 1356
SortOrder = 1416
GroupBy = 1350
Filter = 1356
Or = 1350
Or = 1350
Or = 1350
End
End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'VwDepTal'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'VwDepTal'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties =
Begin PaneConfigurations =
Begin PaneConfiguration = 0
NumPanes = 4
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
End
Begin PaneConfiguration = 1
NumPanes = 3
Configuration = "(H (1 [50] 4 [25] 3))"
End
Begin PaneConfiguration = 2
NumPanes = 3
Configuration = "(H (1 [50] 2 [25] 3))"
End
Begin PaneConfiguration = 3
NumPanes = 3
Configuration = "(H (4 [30] 2 [40] 3))"
End
Begin PaneConfiguration = 4
NumPanes = 2
Configuration = "(H (1 [56] 3))"
End
Begin PaneConfiguration = 5
NumPanes = 2
Configuration = "(H (2 [66] 3))"
End
Begin PaneConfiguration = 6
NumPanes = 2
Configuration = "(H (4 [50] 3))"
End
Begin PaneConfiguration = 7
NumPanes = 1
Configuration = "(V (3))"
End
Begin PaneConfiguration = 8
NumPanes = 3
Configuration = "(H (1[56] 4[18] 2) )"
End
Begin PaneConfiguration = 9
NumPanes = 2
Configuration = "(H (1 [75] 4))"
End
Begin PaneConfiguration = 10
NumPanes = 2
Configuration = "(H (1[66] 2) )"
End
Begin PaneConfiguration = 11
NumPanes = 2
Configuration = "(H (4 [60] 2))"
End
Begin PaneConfiguration = 12
NumPanes = 1
Configuration = "(H (1) )"
End
Begin PaneConfiguration = 13
NumPanes = 1
Configuration = "(V (4))"
End
Begin PaneConfiguration = 14
NumPanes = 1
Configuration = "(V (2))"
End
ActivePaneConfig = 0
End
Begin DiagramPane =
Begin Origin =
Top = 0
Left = 0
End
Begin Tables =
Begin Table = "Kullanici"
Begin Extent =
Top = 7
Left = 48
Bottom = 170
Right = 242
End
DisplayFlags = 280
TopColumn = 0
End
Begin Table = "Personel"
Begin Extent =
Top = 7
Left = 290
Bottom = 148
Right = 501
End
DisplayFlags = 280
TopColumn = 0
End
End
End
Begin SQLPane =
End
Begin DataPane =
Begin ParameterDefaults = ""
End
End
Begin CriteriaPane =
Begin ColumnWidths = 11
Column = 1440
Alias = 900
Table = 1170
Output = 720
Append = 1400
NewValue = 1170
SortType = 1350
SortOrder = 1410
GroupBy = 1350
Filter = 1350
Or = 1350
Or = 1350
Or = 1350
End
End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'VwKulPer'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'VwKulPer'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
Begin DesignProperties =
Begin PaneConfigurations =
Begin PaneConfiguration = 0
NumPanes = 4
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
End
Begin PaneConfiguration = 1
NumPanes = 3
Configuration = "(H (1 [50] 4 [25] 3))"
End
Begin PaneConfiguration = 2
NumPanes = 3
Configuration = "(H (1 [50] 2 [25] 3))"
End
Begin PaneConfiguration = 3
NumPanes = 3
Configuration = "(H (4 [30] 2 [40] 3))"
End
Begin PaneConfiguration = 4
NumPanes = 2
Configuration = "(H (1 [56] 3))"
End
Begin PaneConfiguration = 5
NumPanes = 2
Configuration = "(H (2 [66] 3))"
End
Begin PaneConfiguration = 6
NumPanes = 2
Configuration = "(H (4 [50] 3))"
End
Begin PaneConfiguration = 7
NumPanes = 1
Configuration = "(V (3))"
End
Begin PaneConfiguration = 8
NumPanes = 3
Configuration = "(H (1[56] 4[18] 2) )"
End
Begin PaneConfiguration = 9
NumPanes = 2
Configuration = "(H (1 [75] 4))"
End
Begin PaneConfiguration = 10
NumPanes = 2
Configuration = "(H (1[66] 2) )"
End
Begin PaneConfiguration = 11
NumPanes = 2
Configuration = "(H (4 [60] 2))"
End
Begin PaneConfiguration = 12
NumPanes = 1
Configuration = "(H (1) )"
End
Begin PaneConfiguration = 13
NumPanes = 1
Configuration = "(V (4))"
End
Begin PaneConfiguration = 14
NumPanes = 1
Configuration = "(V (2))"
End
ActivePaneConfig = 0
End
Begin DiagramPane =
Begin Origin =
Top = 0
Left = 0
End
Begin Tables =
Begin Table = "Departman"
Begin Extent =
Top = 7
Left = 48
Bottom = 126
Right = 242
End
DisplayFlags = 280
TopColumn = 0
End
Begin Table = "Kullanici"
Begin Extent =
Top = 7
Left = 290
Bottom = 170
Right = 484
End
DisplayFlags = 280
TopColumn = 0
End
Begin Table = "Personel"
Begin Extent =
Top = 7
Left = 532
Bottom = 148
Right = 743
End
DisplayFlags = 280
TopColumn = 0
End
End
End
Begin SQLPane =
End
Begin DataPane =
Begin ParameterDefaults = ""
End
End
Begin CriteriaPane =
Begin ColumnWidths = 11
Column = 1440
Alias = 900
Table = 1170
Output = 720
Append = 1400
NewValue = 1170
SortType = 1350
SortOrder = 1410
GroupBy = 1350
Filter = 1350
Or = 1350
Or = 1350
Or = 1350
End
End
End
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'VwKulPerDep'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'VwKulPerDep'
GO