diff options
author | AlexRa | 2010-05-06 23:16:36 +0300 |
---|---|---|
committer | AlexRa | 2010-05-18 22:16:13 +0300 |
commit | 020f38774fbe8e0f53b0cb28ab49b378b9dcd325 (patch) | |
tree | 5d936d6450d580cf24e133047df7ff8d759de557 /OpenSim/Data/MSSQL/Resources/005_EstateStore.sql | |
parent | Migrations for SQLite converted to new format (diff) | |
download | opensim-SC-020f38774fbe8e0f53b0cb28ab49b378b9dcd325.zip opensim-SC-020f38774fbe8e0f53b0cb28ab49b378b9dcd325.tar.gz opensim-SC-020f38774fbe8e0f53b0cb28ab49b378b9dcd325.tar.bz2 opensim-SC-020f38774fbe8e0f53b0cb28ab49b378b9dcd325.tar.xz |
MS SQL migrations converted to the new format
Diffstat (limited to 'OpenSim/Data/MSSQL/Resources/005_EstateStore.sql')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/005_EstateStore.sql | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/005_EstateStore.sql b/OpenSim/Data/MSSQL/Resources/005_EstateStore.sql deleted file mode 100644 index ba93b39..0000000 --- a/OpenSim/Data/MSSQL/Resources/005_EstateStore.sql +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | BEGIN TRANSACTION | ||
2 | |||
3 | CREATE TABLE dbo.Tmp_estate_groups | ||
4 | ( | ||
5 | EstateID int NOT NULL, | ||
6 | uuid uniqueidentifier NOT NULL | ||
7 | ) ON [PRIMARY] | ||
8 | |||
9 | IF EXISTS(SELECT * FROM dbo.estate_groups) | ||
10 | EXEC('INSERT INTO dbo.Tmp_estate_groups (EstateID, uuid) | ||
11 | SELECT EstateID, CONVERT(uniqueidentifier, uuid) FROM dbo.estate_groups WITH (HOLDLOCK TABLOCKX)') | ||
12 | |||
13 | DROP TABLE dbo.estate_groups | ||
14 | |||
15 | EXECUTE sp_rename N'dbo.Tmp_estate_groups', N'estate_groups', 'OBJECT' | ||
16 | |||
17 | CREATE NONCLUSTERED INDEX IX_estate_groups ON dbo.estate_groups | ||
18 | ( | ||
19 | EstateID | ||
20 | ) WITH( STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] | ||
21 | |||
22 | COMMIT | ||