diff options
author | Charles Krinke | 2008-10-27 00:46:17 +0000 |
---|---|---|
committer | Charles Krinke | 2008-10-27 00:46:17 +0000 |
commit | 8cb889cb0e1a09bee80745b6a6d81641d1c62202 (patch) | |
tree | 3872f75b8201bce8c2c13a200b08e8b24350b5fd /OpenSim/Data/MSSQL/Resources | |
parent | Update CONTRIBUTORS (diff) | |
download | opensim-SC_OLD-8cb889cb0e1a09bee80745b6a6d81641d1c62202.zip opensim-SC_OLD-8cb889cb0e1a09bee80745b6a6d81641d1c62202.tar.gz opensim-SC_OLD-8cb889cb0e1a09bee80745b6a6d81641d1c62202.tar.bz2 opensim-SC_OLD-8cb889cb0e1a09bee80745b6a6d81641d1c62202.tar.xz |
Thank you kindly, Ruud Lathrop for a patch that solves:
Primary Key violation when just linked a lot of prims using MSSQL.
Diffstat (limited to 'OpenSim/Data/MSSQL/Resources')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/009_RegionStore.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/009_RegionStore.sql b/OpenSim/Data/MSSQL/Resources/009_RegionStore.sql new file mode 100644 index 0000000..7efc218 --- /dev/null +++ b/OpenSim/Data/MSSQL/Resources/009_RegionStore.sql | |||
@@ -0,0 +1,5 @@ | |||
1 | BEGIN TRANSACTION | ||
2 | |||
3 | ALTER TABLE prims ADD Material tinyint NOT NULL default 3 | ||
4 | |||
5 | COMMIT | ||