Changes between Version 7 and Version 8 of Documentatie/Beheerder/Installeren/Installatiehandleiding/SQLServer
- Timestamp:
- Sep 6, 2012 11:41:48 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Documentatie/Beheerder/Installeren/Installatiehandleiding/SQLServer
v7 v8 1 [[TOC(heading=Inhoudsopgave, sectionindex, compact, Documentatie/Installatiehandleiding/)]] 2 [[TOC(heading=Hoofdstukken, titleindex, compact, Documentatie, Releases, ImplementatieBladen, Events)]] 3 [[TOC(heading=Releases, compact, titleindex, depth=1, Releases/*)]] 4 1 5 = Microsoft SQL Server = 2 6 … … 36 40 37 41 [[Image(Documentatie/Installatiehandleiding:odbc-config3.PNG,class=inline-left,240)]] 38 Vul als naam voor de gegevensbron in "OpenAC", en selecteer als server "(local)".42 Vul als naam voor de gegevensbron in "OpenAC", en selecteer als server de database server in UNC notatie. Dit kan "(local)" zijn, maar ook iets als `DBSERVER\SQLEXPRESS` afhankelijk van hoe de database benaderd wordt. 39 43 40 44 [[Image(Documentatie/Installatiehandleiding:odbc-config4.PNG,class=inline-left,240)]] 41 Kies in het volgende scherm voor SQL Server-verificatie en vul bij aanmelding-id de gebruikersnaam "openac" in. Bij wachtwoord het bij de gebruiker "openac" behorende wachtwoord. Vink verbinden met SQL server aan en klik volgende. Als "andere standaarddatabase" vullen we in: "OpenAC". Alle overige instellingen hoeven niet te worden gewijzigd. 45 Kies in het volgende scherm voor SQL Server-verificatie en vul bij aanmelding-id de gebruikersnaam "openac" in. Bij wachtwoord het bij de gebruiker "openac" behorende wachtwoord. Vink verbinden met SQL server aan en klik volgende. Als "andere standaarddatabase" vullen we in: "OpenAC". Alle overige instellingen hoeven niet te worden gewijzigd. '''NB:''' het is mogelijk (en veiliger) om de Windows verificatie aan te laten staan, maar dan moet per gebruiker / Windows login toegang tot de database geregeld worden. Dat valt buiten het bestek van deze handleiding. 42 46 43 47 Hierna kunt u het ODBC configuratiescherm afsluiten en OpenAC aanzetten. … … 60 64 == Snapshot Isolation == 61 65 62 SQL Server has a default transaction isolation mode that locks entire tables, and causes even mildly concurrent applications to have long held locks and frequent deadlocks. Enabling snapshot isolation for the database as a whole is recommended for modern levels of concurrency support. This is accomplished via the following ALTER DATABASE commands executed at the SQL prompt: 66 Nadat de database server is ingericht, moet nog een instelling aangepast worden om OpenAC lekker te laten werken (zeker bij veel gelijktijdige gebruikers). Hiervoor zijn opmerkingen van Microsoft van toepassing: 67 68 SQL Server has a default transaction isolation mode that locks entire tables, and causes even mildly concurrent applications to have long held locks and frequent deadlocks. Enabling snapshot isolation for the database as a whole is recommended for modern levels of concurrency support. This is accomplished via the following ALTER DATABASE commands executed at the SQL prompt: 63 69 64 70 {{{ 65 71 ALTER DATABASE MyDatabase SET ALLOW_SNAPSHOT_ISOLATION ON 66 67 72 ALTER DATABASE MyDatabase SET READ_COMMITTED_SNAPSHOT ON 68 73 }}}