Changes between Version 7 and Version 8 of Documentatie/Beheerder/Installeren/Installatiehandleiding/SQLServer


Ignore:
Timestamp:
09/06/12 09:41:48 (14 years ago)
Author:
adriaan
Comment:

--

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 
    15= Microsoft SQL Server = 
    26 
     
    3640 
    3741[[Image(Documentatie/Installatiehandleiding:odbc-config3.PNG,class=inline-left,240)]] 
    38 Vul als naam voor de gegevensbron in "OpenAC", en selecteer als server "(local)". 
     42Vul 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. 
    3943 
    4044[[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. 
     45Kies 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. 
    4246 
    4347Hierna kunt u het ODBC configuratiescherm afsluiten en OpenAC aanzetten. 
     
    6064== Snapshot Isolation == 
    6165 
    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: 
     66Nadat 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: 
    6369 
    6470{{{ 
    6571ALTER DATABASE MyDatabase SET ALLOW_SNAPSHOT_ISOLATION ON 
    66  
    6772ALTER DATABASE MyDatabase SET READ_COMMITTED_SNAPSHOT ON 
    6873}}}