diff options
author | AlexRa | 2010-05-06 23:16:36 +0300 |
---|---|---|
committer | AlexRa | 2010-05-16 17:04:50 +0300 |
commit | dfeb9a0b5c07a85ec8aed591206468cee83ce637 (patch) | |
tree | 412dbee487945ed78c9d2598d2310a02c411ef96 /OpenSim/Data/MSSQL/Resources/004_EstateStore.sql | |
parent | Migrations for SQLite converted to new format (diff) | |
download | opensim-SC-dfeb9a0b5c07a85ec8aed591206468cee83ce637.zip opensim-SC-dfeb9a0b5c07a85ec8aed591206468cee83ce637.tar.gz opensim-SC-dfeb9a0b5c07a85ec8aed591206468cee83ce637.tar.bz2 opensim-SC-dfeb9a0b5c07a85ec8aed591206468cee83ce637.tar.xz |
MS SQL migrations converted to the new format
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/004_EstateStore.sql | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/004_EstateStore.sql b/OpenSim/Data/MSSQL/Resources/004_EstateStore.sql deleted file mode 100644 index 0a132c1..0000000 --- a/OpenSim/Data/MSSQL/Resources/004_EstateStore.sql +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | BEGIN TRANSACTION | ||
2 | |||
3 | CREATE TABLE dbo.Tmp_estate_managers | ||
4 | ( | ||
5 | EstateID int NOT NULL, | ||
6 | uuid uniqueidentifier NOT NULL | ||
7 | ) ON [PRIMARY] | ||
8 | |||
9 | IF EXISTS(SELECT * FROM dbo.estate_managers) | ||
10 | EXEC('INSERT INTO dbo.Tmp_estate_managers (EstateID, uuid) | ||
11 | SELECT EstateID, CONVERT(uniqueidentifier, uuid) FROM dbo.estate_managers WITH (HOLDLOCK TABLOCKX)') | ||
12 | |||
13 | DROP TABLE dbo.estate_managers | ||
14 | |||
15 | EXECUTE sp_rename N'dbo.Tmp_estate_managers', N'estate_managers', 'OBJECT' | ||
16 | |||
17 | CREATE NONCLUSTERED INDEX IX_estate_managers ON dbo.estate_managers | ||
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 | ||