forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2-RunScriptUsingWindowsAuthentication.ps1
54 lines (44 loc) · 1.6 KB
/
2-RunScriptUsingWindowsAuthentication.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
<#
.EXAMPLE
These two example shows how to run SQL script using Windows Authentication.
First example shows how the resource is run as account SYSTEM. And the second example shows how the resource is run with a user account.
#>
Configuration Example
{
param(
[Parameter(Mandatory = $true)]
[System.Management.Automation.PSCredential]
$WindowsCredential
)
Import-DscResource -ModuleName SqlServerDsc
Node localhost
{
SqlScriptQuery 'RunAsSYSTEM'
{
ServerInstance = 'localhost\SQL2016'
SetQuery = 'Set Query as System'
TestQuery = 'Test query as System'
GetQuery = 'Get query as System'
Variable = @('FilePath=C:\temp\log\AuditFiles')
}
SqlScriptQuery 'RunAsUser'
{
ServerInstance = 'localhost\SQL2016'
SetQuery = 'Set query as User'
TestQuery = 'Test query as User'
GetQuery = 'Get query as User'
Variable = @('FilePath=C:\temp\log\AuditFiles')
PsDscRunAsCredential = $WindowsCredential
}
SqlScriptQuery 'RunAsUser-With30SecondTimeout'
{
ServerInstance = 'localhost\SQL2016'
SetQuery = 'Set query with query timeout'
TestQuery = 'Test query with query timeout'
GetQuery = 'Get query with query timeout'
QueryTimeout = 30
Variable = @('FilePath=C:\temp\log\AuditFiles')
PsDscRunAsCredential = $WindowsCredential
}
}
}