diff options
author | Justin Clarke Casey | 2009-02-19 18:09:10 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-02-19 18:09:10 +0000 |
commit | 07609565617aa7936758acba5fd625877564a10d (patch) | |
tree | 73123e37f14fea5f171cbe04753c21758f25afc1 /OpenSim/Data/MSSQL/Resources/018_RegionStore.sql | |
parent | * Okay, so finally got my head around this. Problem is that upstream Prebuild... (diff) | |
download | opensim-SC-07609565617aa7936758acba5fd625877564a10d.zip opensim-SC-07609565617aa7936758acba5fd625877564a10d.tar.gz opensim-SC-07609565617aa7936758acba5fd625877564a10d.tar.bz2 opensim-SC-07609565617aa7936758acba5fd625877564a10d.tar.xz |
* Apply http://opensimulator.org/mantis/view.php?id=3142
* Changes varchar(36) columns to UUID type in MSSQL - this will be much more efficient
* ===As always, please, please backup your database before applying this patch===
* Thanks Ruud Lathrop (for the patch) and StrawberryFride (for the review)
Diffstat (limited to 'OpenSim/Data/MSSQL/Resources/018_RegionStore.sql')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/018_RegionStore.sql | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/018_RegionStore.sql b/OpenSim/Data/MSSQL/Resources/018_RegionStore.sql new file mode 100644 index 0000000..6157e35 --- /dev/null +++ b/OpenSim/Data/MSSQL/Resources/018_RegionStore.sql | |||
@@ -0,0 +1,18 @@ | |||
1 | BEGIN TRANSACTION | ||
2 | |||
3 | CREATE TABLE dbo.Tmp_landaccesslist | ||
4 | ( | ||
5 | LandUUID uniqueidentifier NULL, | ||
6 | AccessUUID uniqueidentifier NULL, | ||
7 | Flags int NULL | ||
8 | ) ON [PRIMARY] | ||
9 | |||
10 | IF EXISTS(SELECT * FROM dbo.landaccesslist) | ||
11 | EXEC('INSERT INTO dbo.Tmp_landaccesslist (LandUUID, AccessUUID, Flags) | ||
12 | SELECT CONVERT(uniqueidentifier, LandUUID), CONVERT(uniqueidentifier, AccessUUID), Flags FROM dbo.landaccesslist WITH (HOLDLOCK TABLOCKX)') | ||
13 | |||
14 | DROP TABLE dbo.landaccesslist | ||
15 | |||
16 | EXECUTE sp_rename N'dbo.Tmp_landaccesslist', N'landaccesslist', 'OBJECT' | ||
17 | |||
18 | COMMIT | ||