Skip to main content

Windows Server: Using SQL Authentication with SQL Server

SQL Authentication

Summary of setup:

  1. Create New Database in SQL Server
  2. Create New Login Credential and set up ownership for new Credential on new Database
  3. Use Mixed Mode Authentication Setting within SQL Server
  4. Confirm you can log in with SQL Server Management Studio as newly created credential

IIS Settings

No changes needed in authentication IIS as credential is stored in Web.config


Loading Database Schema

Execute SmartcryptDB.exe as normal because the database credential is stored in Web.config


Sample Connection String in Web.config

  <connectionStrings>
     <add name="SmartcryptEntities" providerName="System.Data.SqlClient" connectionString="data source=dbserver;initial catalog=dbname;user id=dbusername;password=dbpassword;multipleactiveresultsets=True;App=EntityFramework" />
  </connectionStrings>


dbserver = Name of the database server – example: qadbserv.domain.com

dbname = Name of the Database created in the server - example: smartcrypt

dbusername = Value of the SQL Login credential username

dbpassword = Value of the SQL Login credential password

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.