MSSQL tweaks for latest ROBUST - friends handling fixed, GridUserData placeholder added.

Signed-off-by: Melanie <melanie@t-data.com>
This commit is contained in:
unknown
2010-03-07 23:20:23 +00:00
committed by Melanie
parent 9ea6509a1c
commit c135235000
7 changed files with 101 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
BEGIN TRANSACTION
CREATE UNIQUE INDEX PrincipalID ON UserAccounts(PrincipalID);
CREATE INDEX Email ON UserAccounts(Email);
CREATE INDEX FirstName ON UserAccounts(FirstName);
CREATE INDEX LastName ON UserAccounts(LastName);
CREATE INDEX Name ON UserAccounts(FirstName,LastName);
COMMIT