-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSqlBulkExport.psm1
580 lines (366 loc) · 18 KB
/
SqlBulkExport.psm1
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
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
function GenerateSeparator {
param (
[Parameter(Mandatory)]
[string]$Title,
[string]$SeparatorChar = "="
)
$SeparatorChar * ($Title.length + 1)
}
function GetTimespanString {
param (
[timespan]$t
)
return "$([System.Math]::Floor($t.TotalHours))h $($t.Minutes)' $($t.Seconds)"" $($t.Milliseconds.ToString().PadLeft(3, '0'))ms"
}
<#
.SYNOPSIS
Exports the content of a SQL Server database table, view or query
in an RFC 4180-Compliant CSV file.
.DESCRIPTION
Exports the content of a SQL Server database table, view or query
in an RFC 4180-Compliant CSV file.
This function supports the export of huge resultsets, writing the
CSV file content in multiple batches.
.PARAMETER ServerName
The SQL Server instance name to connect to.
.PARAMETER Port
The SQL Server instance port number. By default, it is 1433.
.PARAMETER DatabaseName
The SQL Server database name to connect to.
.PARAMETER SchemaName
The database schema of a table of view from which extract data.
By default, it is 'dbo'.
.PARAMETER TableViewName
The database table or view name from which extract data. This
parameter is mutually exclusive with 'Query'.
.PARAMETER Query
The T-SQL query with which extract data. This parameter is
mutually exclusive with 'TableViewName'.
.PARAMETER User
The username to use to connect to database.
.PARAMETER Password
The password of the username to connect to database.
.PARAMETER ConnectionTimeout
The connection timeout in seconds. By default it is 30 seconds.
.PARAMETER DatabaseCulture
The database culture code (es. it-IT). It's used to understand the
decimal separator properly. By default, it is 'en-US'.
.PARAMETER BatchSize
The size (number of rows) of batches that are written to the output
file until data to extract is over.
.PARAMETER OutputFileFullPath
Full path (including filename and csv extension) of the output file.
.PARAMETER SeparatorChar
Character used to build string separators shown in console.
.EXAMPLE
Import-Module -Name "C:\your-folder\SqlBulkExport.psm1"
Export-SqlBulkCsv -ServerName "YourServerName" -DatabaseName "YourDatabaseName" -SchemaName "yourschema" -TableViewName "your_table_name" -OutputFileFullPath "C:\your-output-folder\output.csv"
#>
function Export-SqlBulkCsv {
param(
[Parameter(Mandatory)]
[string]$ServerName,
[string]$Port = 1433,
[Parameter(Mandatory)]
[string]$DatabaseName,
[string]$SchemaName = "dbo",
[string]$TableViewName,
[string]$Query,
[string]$User,
[string]$Password,
[int]$ConnectionTimeout = 30,
[string]$DatabaseCulture = "en-US",
[int]$BatchSize = 100000,
[Parameter(Mandatory)]
[string]$OutputFileFullPath,
[string]$SeparatorChar = "="
)
# Invoke-Sqlcmd -Query "SELECT * FROM [$SchemaName].[$TableViewName]" -ServerInstance "$ServerName" -Database "$DatabaseName" `
# | Export-Csv -Path "$OutputFileFullPath" -NoTypeInformation -UseQuotes AsNeeded -Encoding utf8
$timer = [Diagnostics.Stopwatch]::StartNew()
# Set the right culture needed to use the correct decimal number separators
[cultureinfo]::currentculture = $DatabaseCulture
if ($PSBoundParameters.ContainsKey("User")) {
if ($PSBoundParameters.ContainsKey("Password")) {
$pass = $Password
} else {
$pass = ""
}
if ($ServerName.ToLower() -contains "database.windows.net") {
$SqlConnectionString = 'Server=tcp:{0},{1};Initial Catalog={2};Persist Security Info=False;User ID={3};Password={4};Encrypt=True;Connection Timeout={5}' -f $ServerName, $Port, $DatabaseName, $User, $pass, $ConnectionTimeout;
} else {
$SqlConnectionString = 'Server={0},{1};Database={2};User Id={3};Password={4};Connection Timeout={5}' -f $ServerName, $Port, $DatabaseName, $User, $pass, $ConnectionTimeout;
}
} else {
if ($ServerName.ToLower() -contains "database.windows.net") {
$SqlConnectionString = 'Server=tcp:{0},{1};Initial Catalog={2};Authentication=Active Directory Integrated;Encrypt=True;Connection Timeout={3}' -f $ServerName, $Port, $DatabaseName, $ConnectionTimeout;
} else {
$SqlConnectionString = 'Data Source={0},{1};Initial Catalog={2};Integrated Security=SSPI;Connection Timeout={3}' -f $ServerName, $Port, $DatabaseName, $ConnectionTimeout;
}
}
if ($PSBoundParameters.ContainsKey('TableViewName')) {
$SqlQuery = "SELECT * FROM [$SchemaName].[$TableViewName];";
$titleStr = " Extracting data from [$DatabaseName].[$SchemaName].[$TableViewName]"
}
elseif ($PSBoundParameters.ContainsKey('Query')) {
$SqlQuery = $Query;
$titleStr = " Extracting data from query."
}
else {
Write-Error "`b`bERROR! At least a table of view name, or a query must be passed." -CategoryActivity " `b"
}
$separator = GenerateSeparator -Title $titleStr -SeparatorChar $SeparatorChar
Write-Host ""
Write-Host ""
Write-Host $separator
Write-Host $titleStr
Write-Host " Query: $SqlQuery"
Write-Host $separator
try {
Write-Host "... reading data from SQL Server"
$SqlConnection = New-Object -TypeName System.Data.SqlClient.SqlConnection -ArgumentList $SqlConnectionString;
$SqlCommand = $SqlConnection.CreateCommand();
$SqlCommand.CommandText = $SqlQuery;
$SqlCommand.CommandTimeout = 0;
$SqlConnection.Open();
$SqlDataReader = $SqlCommand.ExecuteReader();
$t0 = $timer.elapsed
Write-Host "... connection to the data source obtained in $(GetTimespanString($t0))"
Write-Host "... now writing the first batch of data"
#Fetch data and write out to files
if ($SqlDataReader.HasRows) {
# Get the table schema from the data reader
$schemaTable = $SqlDataReader.GetSchemaTable();
# Define the data table that will contain the batch rows
$dataTable = New-Object System.Data.DataTable
# Define column names and types for the batch data table
foreach ($row in $schemaTable.Rows) {
$colName = $row.ColumnName;
$t = $row.DataType;
[void]$dataTable.Columns.Add($colName, $t);
}
$totalRows = 0
$numOfBatches = 0
$i = 1 # current row number of the data reader
$t1 = $t0
# for each row of the data reader...
while ($SqlDataReader.Read()) {
# Add the current row to the batch data table
$newRow = $dataTable.Rows.Add();
foreach ($col in $dataTable.Columns)
{
$newRow[$col.ColumnName] = $SqlDataReader[$col.ColumnName];
}
# If the current row number IS a multiple of the batch size...
if ($i % $BatchSize -eq 0) {
# ... write the batch data table to the file.
$numOfBatches = $numOfBatches + 1
# If it's the first batch data table...
if ($i -eq $BatchSize) {
# ... then just write or overwrite the output file
$dataTable | Export-Csv -Path "$OutputFileFullPath" -NoTypeInformation -UseQuotes AsNeeded -Encoding utf8
} else { # it isn't the first batch data table
# so just append the data table to the output file
$dataTable | Export-Csv -Path "$OutputFileFullPath" -NoTypeInformation -UseQuotes AsNeeded -Encoding utf8 -Append
}
$rowCount = $dataTable.Rows.count
$totalRows = $totalRows + $rowCount
$t2 = $timer.elapsed
$delta = $t2 - $t1
Write-Host "... $totalRows rows written after $(GetTimespanString($t2)) ( Δt = $(GetTimespanString($delta)) )"
# Current batch time becomes the referene one for the next batch
$t1 = $t2
# then flush the batch data table
$dataTable.Clear()
} #[if_batchsize]
# Finally, increment the current row number
$i = $i + 1
} #[while_reader]
# If there are pending rows to be appended to the output file...
if ($dataTable.Rows.count -gt 0) {
# If it's the first batch being written to file...
if ($numOfBatches -eq 0) {
# ... just write or overwrite the output file
$dataTable | Export-Csv -Path "$OutputFileFullPath" -NoTypeInformation -UseQuotes AsNeeded -Encoding utf8
} else { # it isn't the first batch data table
# ... just append rows
$dataTable | Export-Csv -Path "$OutputFileFullPath" -NoTypeInformation -UseQuotes AsNeeded -Encoding utf8 -Append
}
# .. adding rows number to counters
$rowCount = $dataTable.Rows.count
$totalRows = $totalRows + $rowCount
$t3 = $timer.elapsed
$delta = $t3 - $t1
Write-Host "... $totalRows rows written after $(GetTimespanString($t3)) ( Δt = $(GetTimespanString($delta)) )"
# and then flush the data table
$dataTable.Clear()
}
} #[if_datareader_hasrows]
Write-Host "... DONE!"
Write-Host $separator
if ($numOfBatches -gt 0) {
$allBatchesElapsed = $t2 - $t0
$avgElapsedPerBatch = $allBatchesElapsed / $numOfBatches
Write-Host "In average, a batch of $BatchSize rows took $(GetTimespanString($avgElapsedPerBatch))"
}
Write-Host "Data exported to the file $OutputFileFullPath"
}
catch [Exception] {
Write-Host $separator
Write-Error "`b`bERROR!" -CategoryActivity " `b"
Write-Error "`b`b$($_.Exception.Message)" -CategoryActivity " `b"
if ($SqlDataReader.HasRows -and $numOfBatches -gt 0) {
Write-Warning -Message "If it was created, the output file is definitely not complete."
}
}
finally {
Write-Host $separator
$timer.Stop();
$dataTable.Dispose();
if (-Not $SqlDataReader.IsClosed) {
$SqlDataReader.Close();
}
$SqlDataReader.Dispose();
$SqlConnection.Close();
$SqlConnection.Dispose();
}
}
<#
.SYNOPSIS
Exports the content of a SQL Server database table, view or query
in multiple RFC 4180-Compliant CSV files, broken down by "year-month"
based on the contents of a date field.
.DESCRIPTION
Exports the content of a SQL Server database table, view or query
in multiple RFC 4180-Compliant CSV files, broken down by "year-month"
based on the contents of a date field.
This function supports the export of huge result sets, writing each
CSV file content in multiple batches.
.PARAMETER ServerName
The SQL Server instance name to connect to.
.PARAMETER Port
The SQL Server instance port number. By default, it is 1433.
.PARAMETER DatabaseName
The SQL Server database name to connect to.
.PARAMETER SchemaName
The database schema of a table of view from which extract data.
By default, it is 'dbo'.
.PARAMETER TableViewName
The database table or view name from which extract data.
This parameter is mutually exclusive with 'Query'.
.PARAMETER Query
The T-SQL query with which extract data. This parameter is
mutually exclusive with 'TableViewName'.
.PARAMETER DateColumnName
Date/time type column by which data will be broken down by
the time period.
.PARAMETER StartYearMonth
Time period string (allowed formats: "yyyy", "yyyy-MM",
"yyyy-MM-dd") representing the period from which to start
extracting data (period in question included).
.PARAMETER EndYearMonth
Time period string (allowed formats: "yyyy", "yyyy-MM",
"yyyy-MM-dd") representing the period up to which to extract
data (period in question included).
.PARAMETER User
The username to use to connect to database.
.PARAMETER Password
The password of the username to connect to database.
.PARAMETER ConnectionTimeout
The connection timeout in seconds. By default it is 30 seconds.
.PARAMETER DatabaseCulture
The database culture code (es. it-IT). It's used to understand the
decimal separator properly. By default, it is 'en-US'.
.PARAMETER BatchSize
The size (number of rows) of batches that are written to the output
file until data to extract is over.
.PARAMETER OutputFileFullPath
Full path (including filename and csv extension) of the output file.
.PARAMETER SeparatorChar
Character used to build string separators shown in console.
.EXAMPLE
Import-Module -Name "C:\your-folder\SqlBulkExport.psm1"
Export-SqlBulkCsvByPeriod -ServerName "YourServerName" -DatabaseName "YourDatabaseName" -SchemaName "yourschema" -TableViewName "your_table_name" -DateColumnName "date_column" -StartPeriod "2022-01" -EndPeriod "2022-04" -OutputFileFullPath "C:\your-output-folder\output_{}.csv"
#>
function Export-SqlBulkCsvByPeriod {
param(
[Parameter(Mandatory)]
[string]$ServerName,
[string]$Port = 1433,
[Parameter(Mandatory)]
[string]$DatabaseName,
[string]$SchemaName = "dbo",
[string]$TableViewName,
[string]$Query,
[string]$DateColumnName,
[string]$StartPeriod,
[string]$EndPeriod,
[string]$User,
[string]$Password,
[int]$ConnectionTimeout = 30,
[string]$DatabaseCulture = "en-US",
[int]$BatchSize = 100000,
[Parameter(Mandatory)]
[string]$OutputFileFullPath
)
$regexDaily = "^\d{4}-\d{2}-\d{2}$"
$regexMonthly = "^\d{4}-\d{2}$"
$regexYearly = "^\d{4}$"
if (($StartPeriod -match $regexDaily) -and ($EndPeriod -match $regexDaily)) {
$StartPeriodParsed=[Datetime]::ParseExact($StartPeriod, "yyyy-MM-dd", $null)
$EndPeriodParsed=[Datetime]::ParseExact($EndPeriod, "yyyy-MM-dd", $null)
$DateToken = "yyyyMMdd"
$PeriodDescr = "DAILY"
} elseif (($StartPeriod -match $regexMonthly) -and ($EndPeriod -match $regexMonthly)) {
$StartPeriodParsed=[Datetime]::ParseExact($StartPeriod, "yyyy-MM", $null)
$EndPeriodParsed=[Datetime]::ParseExact($EndPeriod, "yyyy-MM", $null)
$DateToken = "yyyyMM"
$PeriodDescr = "MONTHLY"
} elseif (($StartPeriod -match $regexYearly) -and ($EndPeriod -match $regexYearly)) {
$StartPeriodParsed=[Datetime]::ParseExact($StartPeriod, "yyyy", $null)
$EndPeriodParsed=[Datetime]::ParseExact($EndPeriod, "yyyy", $null)
$DateToken = "yyyy"
$PeriodDescr = "YEARLY"
}
else # [start and end time period types are different]
{
Write-Error "`b`bERROR! Start and end time period types must match." -CategoryActivity " `b"
}
if ($StartPeriodParsed -and $EndPeriodParsed -and ($StartPeriodParsed -le $EndPeriodParsed)) {
$timer = [Diagnostics.Stopwatch]::StartNew()
$titleStr1 = " EXTRACTING $($PeriodDescr) DATA FROM [$($SchemaName)].[$($TableViewName)] "
$titleStr2 = " FOR PERIODS FROM $($StartPeriod) TO $($EndPeriod)"
$separator = GenerateSeparator -Title $titleStr1
Write-Host $separator
Write-Host $titleStr1
Write-Host $titleStr2
Write-Host $separator
$start = $StartPeriodParsed
while($start -le $EndPeriodParsed) {
$startDateStr = $start.ToString("yyyy-MM-dd")
$endDateStr = $start.AddMonths(1).ToString("yyyy-MM-dd")
if ($PSBoundParameters.ContainsKey("User")) {
if ($PSBoundParameters.ContainsKey("Password")) {
$pass = $Password
} else {
$pass = ""
}
Export-SqlBulkCsv -ServerName "$ServerName" -DatabaseName "$DatabaseName" -User "$User" -Password "$pass" -Query "SELECT * FROM [$SchemaName].[$TableViewName] WHERE [$DateColumnName] >= '$startDateStr' AND [$DateColumnName] < '$endDateStr'" -BatchSize $BatchSize -DatabaseCulture "$DatabaseCulture" -OutputFileFullPath "$($OutputFileFullPath.Replace('{}', $start.ToString($DateToken)))" -SeparatorChar "-"
Write-Host $Command
} else {
Export-SqlBulkCsv -ServerName "$ServerName" -DatabaseName "$DatabaseName" -Query "SELECT * FROM [$SchemaName].[$TableViewName] WHERE [$DateColumnName] >= '$startDateStr' AND [$DateColumnName] < '$endDateStr'" -BatchSize $BatchSize -DatabaseCulture "$DatabaseCulture" -OutputFileFullPath "$($OutputFileFullPath.Replace('{}', $start.ToString($DateToken)))" -SeparatorChar "-"
}
$start = $start.AddMonths(1)
}
$t = $timer.Elapsed
Write-Host ""
Write-Host $separator
Write-Host " ALL THE CSV FILES EXTRACTED IN $(GetTimespanString($t))"
Write-Host $separator
Write-Host ""
}
else
{
Write-Error "`b`bERROR! Input year-month strings are not valid." -CategoryActivity " `b"
}
}