-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDbUtility.cs
More file actions
446 lines (384 loc) · 15.4 KB
/
DbUtility.cs
File metadata and controls
446 lines (384 loc) · 15.4 KB
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
// Tanner Currie (C) 2019
// tannercurrie@yahoo.com
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace MultiDBSelectUtility
{
public partial class Form1 : Form
{
private string connectionString = "Data Source=ORB-SRBDB1;Initial Catalog=ORB_SRBSystemdatabase_B;Integrated Security=True";
private Dictionary<string, CustomerContainer> m_customerList = new Dictionary<string, CustomerContainer>();
private Dictionary<string, string> m_dbLookUp = new Dictionary<string, string>();
private int m_rowCount = 0;
public Form1()
{
InitializeComponent();
QueryTextBox.Text = "SELECT Email, FirstName, LastName FROM [{0}].[PlatformSchema].[Users] where[IsActive] = '1'";
}
private async void GenerateButton_Click(object sender, EventArgs e)
{
SqlConnection conn = null;
try
{
conn = new SqlConnection(connectionString);
await conn.OpenAsync();
string query = "SELECT Id, DBServer, CustomerName, CustomerNumber FROM [ORB_SRBSystemdatabase_A].[dbo].[Subscriptions]";
SqlCommand command = new SqlCommand(query, conn);
using (SqlDataReader reader = await command.ExecuteReaderAsync())
{
while (reader.Read())
{
CustomerContainer dbData = null;
string customerName = Convert.ToString(reader["CustomerName"]);
string dbServer = Convert.ToString(reader["DBServer"]);
if (dbServer.ToUpper().Contains("FACON") == false && dbServer.Contains(".bzasprod.internal") == true)
{
dbServer = dbServer.Remove(10).ToUpper();
}
else
{
continue;
}
if (m_customerList.ContainsKey(customerName) == false)
{
dbData = new CustomerContainer(dbServer, Convert.ToString(reader["Id"]),
Convert.ToString(reader["CustomerNumber"]), Convert.ToString(reader["CustomerName"]));
m_customerList.Add(customerName, dbData);
}
}
}
conn.Close();
MessageBox.Show(m_customerList.Count().ToString());
WriteToCsvFile();
}
catch (Exception ex)
{
MessageBox.Show(String.Concat(ex.Message, Environment.NewLine, ex.StackTrace), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
}
/// <summary>
/// Create a CSV file from the populated CustomerContainer lookup table
/// </summary>
public void WriteToCsvFile()
{
try
{
if (m_customerList.Count == 0)
{
MessageBox.Show("zero convert list");
return;
}
var csv = new StringBuilder();
foreach (CustomerContainer cust in m_customerList.Values)
{
if (cust.User != null && cust.User.Count > 0)
{
foreach (UserInstance user in cust.User)
{
var newLine = string.Format("{0},{1},{2},{3},{4},{5},{6}", cust.CustomerName, cust.CustomerNumber, cust.SubscritionId, cust.Database,
user.FirstName, user.LastName, user.Email);
csv.AppendLine(newLine);
}
}
else
{
var newLine = string.Format("{0},{1},{2},{3}", cust.CustomerName, cust.CustomerNumber, cust.SubscritionId, cust.Database);
csv.AppendLine(newLine);
}
}
File.WriteAllText("CustomerList.csv", csv.ToString());
}
catch (Exception ex)
{
MessageBox.Show(String.Concat(ex.Message, Environment.NewLine, ex.StackTrace), "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);
}
}
/// <summary>
/// Returns the number of subscriptions in the system
/// </summary>
private async void RowCountButton_Click(object sender, EventArgs e)
{
SqlConnection conn = null;
try
{
conn = new SqlConnection(connectionString);
await conn.OpenAsync();
string query = "SELECT Count(*) FROM [ORB_SRBSystemdatabase_B].[dbo].[Subscriptions]";
SqlCommand command = new SqlCommand(query, conn);
m_rowCount = Convert.ToInt32(await command.ExecuteScalarAsync());
RowCountLabel.Text = String.Format("Row Count: {0}", m_rowCount);
conn.Close();
}
catch (Exception ex)
{
MessageBox.Show(String.Concat(ex.Message, Environment.NewLine, ex.StackTrace), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
}
/// <summary>
/// Assemble the User table and generate the CSV file
/// </summary>
private async void UserTableButton_Click(object sender, EventArgs e)
{
string connectionStr = "Data Source={0};Initial Catalog={1};Integrated Security=True";
SqlConnection conn = null;
try
{
foreach (CustomerContainer customer in m_customerList.Values)
{
string dbServer = customer.Database;
string dbName = string.Empty;
m_dbLookUp.TryGetValue(customer.SubscritionId, out dbName);
if (String.IsNullOrEmpty(dbName) == true)
{
continue;
}
// query the unique customer database server and name
string connection = String.Format(connectionStr, dbServer, dbName);
conn = new SqlConnection(connection);
await conn.OpenAsync();
// find all the active users on this subscription
string queryString = "SELECT Email, FirstName, LastName FROM [{0}].[PlatformSchema].[Users] where[IsActive] = '1'";
string query = String.Format(queryString, dbName);
SqlCommand command = new SqlCommand(query, conn);
using (SqlDataReader reader = await command.ExecuteReaderAsync())
{
List<UserInstance> userList = new List<UserInstance>();
while (reader.Read())
{
userList.Add(new UserInstance(Convert.ToString(reader["Email"]), Convert.ToString(reader["FirstName"]),
Convert.ToString(reader["LastName"])));
}
customer.User = userList;
}
conn.Close();
}
WriteToCsvFile();
}
catch (Exception ex)
{
MessageBox.Show(String.Concat(ex.Message, Environment.NewLine, ex.StackTrace), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
}
/// <summary>
/// Execute a SQL query from the QueryTextBox
/// </summary>
/// <remarks>probe test method to be used with this active db connection instance</remarks>
private async void ExecuteQueryButton_Click(object sender, EventArgs e)
{
string dbServer = DBServerComboBox.SelectedItem.ToString();
string query = QueryTextBox.Text;
string dbName = DbNameTextBox.Text;
string connectionStr = "Data Source={0};Initial Catalog={1};Integrated Security=True";
SqlConnection conn = null;
try
{
string connection = String.Format(connectionStr, dbServer, dbName);
conn = new SqlConnection(connection);
await conn.OpenAsync();
SqlCommand command = new SqlCommand(query, conn);
using (SqlDataReader reader = await command.ExecuteReaderAsync())
{
List<UserInstance> userList = new List<UserInstance>();
while (reader.Read())
{
ResultTextBox.Text = String.Concat(ResultTextBox.Text, Environment.NewLine, reader.GetString(0), " : ", reader.GetString(1), " : ", reader.GetString(2));
}
}
conn.Close();
}
catch (Exception ex)
{
MessageBox.Show(String.Concat(ex.Message, Environment.NewLine, ex.StackTrace), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
}
/// <summary>
/// Find each unique customer DB name from the ApplicationSubscription table
/// and Populate a dictionary mapping with the customer Subscription ID
/// </summary>
private async void GetDatabaseNamesButton_Click(object sender, EventArgs e)
{
SqlConnection conn = null;
if (m_dbLookUp.Count > 1)
{
foreach(string dbKey in m_dbLookUp.Keys)
{
ResultTextBox.Text = String.Concat(ResultTextBox.Text, Environment.NewLine, "Subscr ID: ", dbKey, "DB: ", m_dbLookUp[dbKey]);
}
}
else
{
try
{
conn = new SqlConnection(connectionString);
await conn.OpenAsync();
string query = "SELECT SubscriptionId, DBName FROM [ORB_SRBSystemdatabase_B].[dbo].[ApplicationSubscription] Order By DBName";
SqlCommand command = new SqlCommand(query, conn);
using (SqlDataReader reader = await command.ExecuteReaderAsync())
{
while (reader.Read())
{
string subscriptionId = Convert.ToString(reader["SubscriptionId"]);
string dbName = Convert.ToString(reader["DBName"]);
if (dbName.Contains("_fa") == true)
{
continue;
}
else if (m_dbLookUp.ContainsKey(subscriptionId) == false)
{
m_dbLookUp.Add(subscriptionId, dbName);
ResultTextBox.Text = String.Concat(ResultTextBox.Text, Environment.NewLine, "Subscr ID: ", subscriptionId, "DB: ", dbName);
}
}
}
conn.Close();
MessageBox.Show(String.Format("Complete: {0} Rows", m_dbLookUp.Count));
}
catch (Exception ex)
{
MessageBox.Show(String.Concat(ex.Message, Environment.NewLine, ex.StackTrace), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
finally
{
if (conn != null)
{
conn.Close();
}
}
}
}
private void ClearResultsButton_Click(object sender, EventArgs e)
{
ResultTextBox.Text = String.Empty;
}
private void FormatButton_Click(object sender, EventArgs e)
{
QueryTextBox.Text = String.Format(QueryTextBox.Text, DbNameTextBox.Text);
}
}
/// <summary>
/// Data container class for a Customer instance
/// </summary>
public class CustomerContainer
{
private List<UserInstance> m_user = new List<UserInstance>();
public CustomerContainer(string database, string subscriotionId, string customerNumber, string customerName)
{
Database = database;
SubscritionId = subscriotionId;
CustomerNumber = customerNumber;
CustomerName = customerName;
}
/// <summary>
/// Customer Database
/// </summary>
public string Database
{
get;
set;
}
/// <summary>
/// Subscription ID
/// </summary>
public string SubscritionId
{
get;
set;
}
/// <summary>
/// Customer Number
/// </summary>
public string CustomerNumber
{
get;
set;
}
/// <summary>
/// Customer Name
/// </summary>
public string CustomerName
{
get;
set;
}
/// <summary>
/// List of each unique user that belongs to this customer
/// </summary>
public List<UserInstance> User
{
get
{
return m_user;
}
set
{
m_user = value;
}
}
}
/// <summary>
/// User instance container class
/// </summary>
public class UserInstance
{
public UserInstance()
{ }
public UserInstance(string email, string firstName, string lastName)
{
Email = email;
FirstName = firstName;
LastName = lastName;
}
public string Email
{
get;
set;
}
public string FirstName
{
get;
set;
}
public string LastName
{
get;
set;
}
}
}