forked from dsccommunity/SqlServerDsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1-CreateDatabase.ps1
43 lines (37 loc) · 1.08 KB
/
1-CreateDatabase.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
<#
.EXAMPLE
This example shows how to create a database with
the database name equal to 'Contoso'.
The second example shows how to create a database
with a different collation.
#>
Configuration Example
{
param
(
[Parameter(Mandatory = $true)]
[System.Management.Automation.PSCredential]
$SqlAdministratorCredential
)
Import-DscResource -ModuleName SqlServerDsc
node localhost
{
SqlDatabase Create_Database
{
Ensure = 'Present'
ServerName = 'sqltest.company.local'
InstanceName = 'DSC'
Name = 'Contoso'
PsDscRunAsCredential = $SqlAdministratorCredential
}
SqlDatabase Create_Database_with_different_collation
{
Ensure = 'Present'
ServerName = 'sqltest.company.local'
InstanceName = 'DSC'
Name = 'AdventureWorks'
Collation = 'SQL_Latin1_General_Pref_CP850_CI_AS'
PsDscRunAsCredential = $SqlAdministratorCredential
}
}
}