Switch to C:\inetpub\wwwroot\ils\targetConfigs folder and edit sampleDb.config file:

<Settings> … </Settings>:

  • Data Source - is the name of Microsoft SQL Server or its named instance
  • Initial Catalog - is the name of database (ILS)
  • User ID - is the service account to use with Indeed PAM databases
  • Password - is the password for that service account

<Settings>
	<ConnectionString>Data Source=MSSQLServer;Initial Catalog=ILS;Integrated Security=False;User ID=IPAMSQLServer;Password=Password</ConnectionString>
</Settings>


If named instance of Microsoft SQL Server is used, then the Data Source parameter should be specified as
<server name>\<instance name>.

<Settings>
	<ConnectionString>Data Source=MSSQLServer\Named instance; ... </ConnectionString>
</Settings>