@model Disco.Web.Models.InitialConfig.DatabaseModel @{ ViewBag.Title = null; }
| Server: |
@Html.EditorFor(m => m.Server) @Html.ValidationMessageFor(m => m.Server)
If the default instance of SQL Server is not being used, include the instance name.
For example: "SERVER_NAME\INSTANCE_NAME" |
|---|---|
| Database Name: |
@Html.EditorFor(m => m.DatabaseName) @Html.ValidationMessageFor(m => m.DatabaseName)
An attempt will be made to create a database with this name if it does not exist.
|
| Authentication Method: |
@Html.DropDownListFor(m => m.AuthMethod, Model.AuthMethods) @Html.ValidationMessageFor(m => m.AuthMethod)
Integrated Authentication is recommended.
To use Integrated Authentication ensure the DiscoServiceAccount domain user has the db_owner role over the database, or sysadmin role if creating a new database. |