Skip to main content
Version: On prem: 14.0.16

Azure SQL databases

To use external databases from Azure SQL for your On-Prem installation, follow these steps.

  1. Create Azure SQL databases.

    These are the databases that you need to create in Azure SQL:

  2. Update the MSSQL node in the configuration file.

    Then, you must modify the following settings in the MSSQL node of the configuration file:

    SettingsValue description
    ServerAdd the address of the server, available on the Microsoft Azure portal.
    AdministratorAdd the administrator name established when creating the Azure server.
    AdministratorPasswordAdd the administrator password established when creating the Azure server.
    IntegratedSecurityMust be switched to False.
    Example
    <?xml version="1,0" encoding="utf-8"?>
    <Configuration>
    <Version Type="LocalCopy">
    <MSSQL>
    <Version>2016</Version>
    <VersionNo>13</VersionNo>
    <Server>[SERVER_ADDRESS]</Server>
    <SSIS>localhost</SSIS>
    <Administrator>[USER_NAME]</Administrator>
    <AdministratorPassword>[USER_PASSWORD]</AdministratorPassword>
    <IntegratedSecurity Enabled="false">
    </IntegratedSecurity>
    <RsHttps>false</RsHttps>
    <RsOnAppServer>true</RsOnAppServer>
    <SSRSPath>C:\Program Files\Microsoft SQL Server\MSRS13.MSSQLSERVER\Reporting Services</SSRSPath>
    <SSASServer>.</SSASServer>
    <SSASCatalog>OIS</SSASCatalog>
    </MSSQL>
    ...
  3. Update ES, OPS, DW, RoPE nodes in the configuration file

    Then, for each ES, OPS, DW, RoPE nodes of the configuration file, you must modify the following settings:

    SettingValue description
    DBUserAdd the database user name created with your Azure SQL server.
    DBPasswordAdd the database password created with your Azure SQL server.
    Example
    <OPS Enabled="true">
    <Version>12.0.271</Version>
    <DropFolder>\\ovms09\drop\OPS\Dev\Next Release\OPS.Dev.Next</DropFolder>
    <Name>Omada Provisioning Service</Name>
    <Exe>Omada Provisioning Service.exe</Exe>
    <DBName>ProvisioningService</DBName>
    <DBUser>[Database_Name]</DBUser>
    <DBPassword>[Database_Password]</DBPassword>