minor updates

This commit is contained in:
Jos de Bruijn
2017-06-26 10:08:07 -07:00
parent bdab0ab37e
commit 21a2b47c20
3 changed files with 7 additions and 5 deletions
@@ -29,7 +29,7 @@ GO
-- 1a. In Object Explorer, expand the security node in WideWorldImporters, then expand
-- the Always Encrypted Keys node and note the contents.
-- If you do not see the Always Encrypted node, install the latest version of Management Studio (17.X or higher).
-- If you do not see the Always Encrypted node, install the latest version of Management Studio (17.X or higher): https://aka.ms/ssms
-- 1b. Right-click the Column Master Keys node and click New Column Master Key.
-- 1c. For the name, enter WWI_ColumnMasterKey.
-- 1d. Note the available entries in the Key store dropdown list. Choose Windows Certificate Store - Current User.
@@ -4,8 +4,9 @@
MinorSampleVersion INT NOT NULL,
MinSQLServerBuild NVARCHAR(25) NOT NULL,
[RowCount] INT NOT NULL DEFAULT (1),
CONSTRAINT uq_SampleVersion_RowCount UNIQUE ([RowCount]),
CONSTRAINT chk_SampleVersion_cardinality
CONSTRAINT uq_SampleVersion_RowCount
UNIQUE ([RowCount]),
CONSTRAINT chk_SampleVersion_Cardinality
CHECK ([RowCount]= 1)
)
@@ -4,8 +4,9 @@
MinorSampleVersion INT NOT NULL,
MinSQLServerBuild NVARCHAR(25) NOT NULL,
[RowCount] INT NOT NULL DEFAULT (1),
CONSTRAINT uq_SampleVersion_RowCount UNIQUE ([RowCount]),
CONSTRAINT chk_SampleVersion_cardinality
CONSTRAINT uq_SampleVersion_RowCount
UNIQUE ([RowCount]),
CONSTRAINT chk_SampleVersion_Cardinality
CHECK ([RowCount]= 1)
)