-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHizmetCRM_DB.sql
311 lines (310 loc) · 21 KB
/
HizmetCRM_DB.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
/****** Object: View [dbo].[Hizmetcrm_FormView] Script Date: 24/09/2022 15:14:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[Hizmetcrm_FormView]
AS
SELECT dbo.HizmetCRM_Kategori.KategoriID, dbo.HizmetCRM_Kategori.Ad, dbo.HizmetCRM_AnaKategori.AnaAd, dbo.HizmetCRM_Kategori.IsActive
FROM dbo.HizmetCRM_Kategori INNER JOIN
dbo.HizmetCRM_AnaKategori ON dbo.HizmetCRM_Kategori.AnaKategoriID = dbo.HizmetCRM_AnaKategori.AnaKategoriID
GO
/****** Object: Table [dbo].[MusteriMemnuniyeti_AnaKategori] Script Date: 24/09/2022 15:14:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MusteriMemnuniyeti_AnaKategori](
[AnaKategoriID] [int] IDENTITY(1,1) NOT NULL,
[AnaAd] [nvarchar](50) NULL,
[IsActive] [bit] NULL,
CONSTRAINT [PK_MusteriMemnuniyeti_AnaKategori] PRIMARY KEY CLUSTERED
(
[AnaKategoriID] 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].[MusteriMemnuniyeti_Kategori] Script Date: 24/09/2022 15:14:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MusteriMemnuniyeti_Kategori](
[KategoriID] [int] IDENTITY(1,1) NOT NULL,
[Ad] [nvarchar](50) NULL,
[AnaKategoriID] [int] NULL,
[IsActive] [bit] NULL,
CONSTRAINT [PK_MusteriMemnuniyeti_Kategori] PRIMARY KEY CLUSTERED
(
[KategoriID] 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].[MusteriMemnuniyeti_Kullanicilar] Script Date: 24/09/2022 15:14:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MusteriMemnuniyeti_Kullanicilar](
[KullaniciID] [int] IDENTITY(1,1) NOT NULL,
[AdSoyad] [nvarchar](150) NULL,
[KullaniciAdi] [nvarchar](150) NULL,
[Sifre] [nvarchar](150) NULL,
[AnaKullanici] [bit] NULL,
[IsActive] [bit] NULL,
CONSTRAINT [PK_MusteriMemnuniyeti_Kullanicilar] 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: Table [dbo].[MusteriMemnuniyeti_Personel] Script Date: 24/09/2022 15:14:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MusteriMemnuniyeti_Personel](
[PersonID] [int] IDENTITY(1,1) NOT NULL,
[PersonelAdi] [nvarchar](50) NULL,
[IsActive] [bit] NULL,
CONSTRAINT [PK_MusteriMemnuniyeti_Personel] PRIMARY KEY CLUSTERED
(
[PersonID] 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].[MusteriMemnuniyeti_ServisOlumlu] Script Date: 24/09/2022 15:14:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MusteriMemnuniyeti_ServisOlumlu](
[ServisOlumluID] [int] IDENTITY(1,1) NOT NULL,
[AnketID] [int] NULL,
[ServisID] [int] NULL,
CONSTRAINT [PK_MusteriMemnuniyeti_ServisOlumlu] PRIMARY KEY CLUSTERED
(
[ServisOlumluID] 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].[MusteriMemnuniyeti_ServisOlumsuz] Script Date: 24/09/2022 15:14:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MusteriMemnuniyeti_ServisOlumsuz](
[ServisOlumsuzID] [int] IDENTITY(1,1) NOT NULL,
[AnketID] [int] NULL,
[ServisID] [int] NULL,
CONSTRAINT [PK_MusteriMemnuniyeti_ServisOlumsuz] PRIMARY KEY CLUSTERED
(
[ServisOlumsuzID] 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].[MusteriMemnuniyeti_Subeler] Script Date: 24/09/2022 15:14:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MusteriMemnuniyeti_Subeler](
[SubeID] [int] IDENTITY(1,1) NOT NULL,
[SubeAdi] [nvarchar](150) NULL,
[IsActive] [bit] NULL,
CONSTRAINT [PK_MusteriMemnuniyeti_Subeler] PRIMARY KEY CLUSTERED
(
[SubeID] 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].[MusteriMemnuniyeti_YeniAnket] Script Date: 24/09/2022 15:14:46 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MusteriMemnuniyeti_YeniAnket](
[AnketID] [int] IDENTITY(1,1) NOT NULL,
[AnketTarih] [nvarchar](10) NULL,
[AramaTarih] [nvarchar](10) NULL,
[Numara] [nvarchar](50) NULL,
[AdSoyad] [nvarchar](150) NULL,
[Meslek] [nvarchar](150) NULL,
[SubeID] [int] NULL,
[PersonID] [int] NULL,
[HizmetID] [int] NULL,
[CepTlf] [nvarchar](150) NULL,
[SabitTlf] [nvarchar](150) NULL,
[Adres] [nvarchar](250) NULL,
[Eposta] [nvarchar](150) NULL,
[DogumTarihi] [nvarchar](10) NULL,
[Dogum] [bit] NULL,
[DogumAy] [tinyint] NULL,
[DogumGun] [tinyint] NULL,
[EvlilikTarihi] [nvarchar](10) NULL,
[Evlilik] [bit] NULL,
[EvlilikAy] [tinyint] NULL,
[EvlilikGun] [tinyint] NULL,
[AnketYorumu] [nvarchar](500) NULL,
[AnketRaporu] [nvarchar](500) NULL,
[GorusmeSonucu] [nvarchar](50) NULL,
[UlasimSecenegi] [nvarchar](50) NULL,
[KullaniciID] [int] NULL,
[EklemeTarihi] [datetime] NULL,
[DuzenleID] [int] NULL,
[DuzenlemeTarih] [datetime] NULL,
[IsActive] [bit] NULL,
CONSTRAINT [PK_MusteriMemnuniyeti_YeniAnket] PRIMARY KEY CLUSTERED
(
[AnketID] 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
ALTER TABLE [dbo].[MusteriMemnuniyeti_AnaKategori] ADD CONSTRAINT [DF_MusteriMemnuniyeti_AnaKategori_IsActive] DEFAULT ((1)) FOR [IsActive]
GO
ALTER TABLE [dbo].[MusteriMemnuniyeti_Kategori] ADD CONSTRAINT [DF_MusteriMemnuniyeti_Kategori_IsActive] DEFAULT ((1)) FOR [IsActive]
GO
ALTER TABLE [dbo].[MusteriMemnuniyeti_Kullanicilar] ADD CONSTRAINT [DF_MusteriMemnuniyeti_Kullanicilar_IsActive] DEFAULT ((1)) FOR [IsActive]
GO
ALTER TABLE [dbo].[MusteriMemnuniyeti_Personel] ADD CONSTRAINT [DF_MusteriMemnuniyeti_Personel_IsActive] DEFAULT ((1)) FOR [IsActive]
GO
ALTER TABLE [dbo].[MusteriMemnuniyeti_Subeler] ADD CONSTRAINT [DF_MusteriMemnuniyeti_Subeler_IsActive] DEFAULT ((1)) FOR [IsActive]
GO
ALTER TABLE [dbo].[MusteriMemnuniyeti_YeniAnket] ADD CONSTRAINT [DF_MusteriMemnuniyeti_YeniAnket_Dogum] DEFAULT ((0)) FOR [Dogum]
GO
ALTER TABLE [dbo].[MusteriMemnuniyeti_YeniAnket] ADD CONSTRAINT [DF_MusteriMemnuniyeti_YeniAnket_Evlilik] DEFAULT ((0)) FOR [Evlilik]
GO
ALTER TABLE [dbo].[MusteriMemnuniyeti_YeniAnket] ADD CONSTRAINT [DF_MusteriMemnuniyeti_YeniAnket_IsActive] DEFAULT ((1)) FOR [IsActive]
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[32] 4[29] 2[21] 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 = "HizmetCRM_Kategori"
Begin Extent =
Top = 6
Left = 214
Bottom = 136
Right = 384
End
DisplayFlags = 280
TopColumn = 0
End
Begin Table = "HizmetCRM_AnaKategori"
Begin Extent =
Top = 1
Left = 34
Bottom = 132
Right = 197
End
DisplayFlags = 280
TopColumn = 0
End
End
End
Begin SQLPane =
End
Begin DataPane =
Begin ParameterDefaults = ""
End
Begin ColumnWidths = 9
Width = 284
Width = 1500
Width = 1500
Width = 1500
Width = 1500
Width = 1500
Width = 1500
Width = 1500
Width = 1500
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'Hizmetcrm_FormView'
GO
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Hizmetcrm_FormView'
GO