1. Open the SQL console of the SQL server by selecting "New Query" in SQL Server Management Studio.
  2. Use the following script as a template, customize it (password) and execute it.

    To avoid problems when activating the data source, ensure that LOGIN, USER, and SCHEMA have the same name.

    CREATE DATABASE rmdb
    GO
    USE rmdb
    GO
    CREATE LOGIN igelums with PASSWORD = 'setyourpasswordhere',
    DEFAULT_DATABASE=rmdb
    GO
    CREATE USER igelums with DEFAULT_SCHEMA = igelums
    GO
    CREATE SCHEMA igelums AUTHORIZATION igelums GRANT CONTROL to igelums
    GO

  3. Use the UMS Administrator to set up a new SQL Server Cluster type data source for each server.

    The Microsoft SQL Server Cluster should allow Windows and SQL authentication.