forked from DanielLoth/Get-SSMSDiagramCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGet-SSMSDiagramCode.ps1
272 lines (206 loc) · 5.89 KB
/
Get-SSMSDiagramCode.ps1
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
[CmdletBinding()]
param (
[Parameter(Mandatory = $false)]
[string] $ServerInstance = "localhost",
[Parameter(Mandatory)]
[string] $Database,
[Parameter(Mandatory = $false)]
[string] $DiagramSchema = "DiagramGeneration",
[Parameter(Mandatory = $false)]
[int] $ChunkSize = 20
)
############
# Preamble #
############
#requires -Version 5.1
#requires -Modules SqlServer
Set-StrictMode -Version Latest
$ErrorActionPreference = "Stop"
# New line regex. Output is normalised to use CRLF line endings
$UnixNewLineRegex = "(?<!`r)`n"
$NewLine = "`r`n"
#######################################
# Ensure dbo.sysdiagrams table exists #
#######################################
$DiagramTableExistsQuery = "
select
case
when exists (select 1 from sys.tables where name = 'sysdiagrams')
then 1
else 0
end as DiagramTableExists;"
$DiagramTableExists = Invoke-SqlCmd `
-ServerInstance $ServerInstance `
-Database $Database `
-ApplicationIntent ReadOnly `
-ConnectionTimeout 5 `
-OutputAs DataTables `
-QueryTimeout 5 `
-Query $DiagramTableExistsQuery
if ($DiagramTableExists[0].DiagramTableExists -eq 0) {
Write-Host "The dbo.sysdiagrams table does not exist"
exit 0
}
##############
# Main query #
##############
$Query = "
declare @ChunkSize int = `$(ChunkSize);
with
L1 as (select 1 as A union all select 1),
L2 as (select 1 as A from L1 a cross join L1 b),
L3 as (select 1 as A from L2 a cross join L2 b),
L4 as (select 1 as A from L3 a cross join L3 b),
L5 as (select 1 as A from L4 a cross join L4 b),
Numbers (Number) as (select row_number() over (order by (select 1)) from L5)
select *
from (
select
n.Number,
datalength(d.definition) as NumBytes,
d.name, d.principal_id, d.diagram_id, d.version,
sys.fn_varbintohexsubstring(
1,
d.definition,
case when n.Number = 1 then 1 else n.Number + 1 end,
@ChunkSize)
as Chunk
from Numbers n
cross join (
select *
from dbo.sysdiagrams
where principal_id = 1 /* dbo-owned diagrams only */
) d
where n.Number = 1 or n.Number % @ChunkSize = 0
) s
where Chunk is not null
order by name, Number;
"
# Normalise line endings (LF -> CRLF)
$Query = $Query -replace $UnixNewLineRegex, $NewLine
#####################
# Execute the query #
#####################
$Variables = @()
$Variables += "ChunkSize='$($ChunkSize)'"
$Results = Invoke-SqlCmd `
-ServerInstance $ServerInstance `
-Database $Database `
-ApplicationIntent ReadOnly `
-ConnectionTimeout 5 `
-OutputAs DataTables `
-QueryTimeout 30 `
-Query $Query `
-Variable $Variables
if ($null -eq $Results) {
Write-Host "No diagrams exist"
exit 0
}
#################
# Group results #
#################
# Each set of grouped rows comprise one diagram.
$ResultsGrouped = $Results | Group-Object -Property diagram_id
############################################
# Generate each diagram creation procedure #
############################################
$GenerationProcedureNames = @()
$OutputSql = ""
foreach ($Group in $ResultsGrouped) {
$LastRow = $Group.Group[-1]
$ProcedureName = "[$($DiagramSchema)].[$($LastRow.name)]"
$GenerationProcedureNames += $ProcedureName
$OutputSql += "
create procedure $ProcedureName
as
set xact_abort, nocount on;
if @@trancount > 0
begin
throw 50000, N'This procedure must not be executed within an open transaction.', 1;
return 1;
end
begin try
set transaction isolation level serializable;
begin transaction;
declare @DiagramWithNameExists bit = 0;
declare @DiagramId int = 0;
select
@DiagramWithNameExists = 1,
@DiagramId = diagram_id
from dbo.sysdiagrams with (updlock, rowlock)
where principal_id = $($LastRow.principal_id) and name = '$($LastRow.name)';
if @DiagramWithNameExists = 0
begin
print N'Creating diagram ''$($LastRow.name)''...';
declare @NewDiagramId table (Id int primary key);
insert into dbo.sysdiagrams (name, principal_id, version, definition)
output inserted.diagram_id
into @NewDiagramId
values ('$($LastRow.name)', $($LastRow.principal_id), 1, 0x);
select @DiagramId = (select Id from @NewDiagramId);
end
else
begin
print N'Replacing diagram ''$($LastRow.name)''...';
update dbo.sysdiagrams set definition = 0x where diagram_id = @DiagramId;
end
"
foreach ($Row in $Group.Group) {
$OutputSql += "
update dbo.sysdiagrams set definition.Write ($($Row.Chunk), null, 0) where diagram_id = @DiagramId;"
if ($Row -eq $LastRow) {
$OutputSql += $NewLine
}
}
$OutputSql += "
commit;
end try
begin catch
if @@trancount > 0 rollback;
throw;
end catch
return 0;
go
"
}
#########################################
# Generate the InsertAll procedure code #
#########################################
$OutputSql += "
create procedure [$($DiagramSchema)].[InsertAllDiagrams]
as
set xact_abort, nocount on;
if @@trancount > 0
begin
throw 50000, N'This procedure must not be executed within an open transaction.', 1;
return 1;
end
begin try
"
$LastProcedureName = $GenerationProcedureNames[-1]
foreach ($ProcedureName in $GenerationProcedureNames) {
$OutputSql += " exec $($ProcedureName);"
if ($ProcedureName -ne $LastProcedureName) {
$OutputSql += $NewLine
}
}
$OutputSql += "
end try
begin catch
if @@trancount > 0 rollback;
throw;
end catch
return 0;
go
"
###########################
# Clean up generated code #
###########################
# Trim empty line at start of generated SQL
$OutputSql = $OutputSql.TrimStart()
# Normalise line endings (LF -> CRLF)
$OutputSql = $OutputSql -replace $UnixNewLineRegex, $NewLine
#######################
# Write generated SQL #
#######################
$OutputSql