The database that is used as storage is created manually and is populated using Storage.sql script from the Indeed CM installation package (\IndeedCM.Server\Misc).

Data storage creation

1. Create a database in SQL Management Studio environment with an arbitrary name (say, IndeedCM):

  • In the Object Explorer, right-click on the Databases tab.
  • Select New Database... .
  • Specify the Database Name: for example, IndeedCM and click OK.

2. Use a local SQL account or Windows domain account (for example, servicecm) and define the permissions for the created database. This account shall be used to perform reading data from the database and writing data to it. Connection of the account to the database is carried out with Indeed CM Setup Wizard.

  • Define Logins for the created database (for example, servicecm):
  • Click Security > Logins, select an account from the list.
  • Go to the User Mapping tab.
  • Grant permissions to work with the database for the selected login, specify permissions: db_owner and public.
  • Click OK.

3. Select the created database (IndeedCM) in the Object Explorer and execute the Storage.sql script:

  • Choose File > Open > File... (or Ctrl+O), specify the path to the Storage.sql file (located in the ..\IndeedCM.Server\Misc directory) and click Open.
  • Before executing the script, uncomment: --USE [<database name>] --GO and specify the name of the database for which the script is applied (IndeedCM): --USE [IndeedCM] --GO. Or select the required database in the drop-down menu.
  • Click Execute


  • No labels