Configuring a Secondary RPS Database for Azure

The [JadeRPS] section of the Jade initialization files can contain the following parameters to configure a secondary RPS database for Azure.

The initialization file parameters in the following example generate BCP scripts that use Azure Active Directory (AD) authentication (that is, -G), set the max row level errors to 5, and output a bcp_errors.log file.

[JadeRPS]
UseAzureSQLDatabase=true
AzureAuthenticationMethod=ActiveDirectoryIntegrated
AzureBcpMaxErrors=5

The initialization file parameters in the following example generate BCP scripts that use the authentication method defined in the DSN (that is, -D), set the max row level errors to zero (0), and output a bcp_errors.log file.

[JadeRPS]
UseAzureSQLDatabase=true
AzureAuthenticationMethod=DSNDefined
DSNName=SystemDSN

The bcp_errors.log file is output if the conditions specified above are met. If there are no errors, the file is still output, but is zero (0) bytes in size.

The documentation for the flags that have been added to the BCP scripts (that is, -D, -e, and -m), can be found at the following URL.

The BCP flags are set only if the UseAzureSQLDatabase initialization file parameter has been set to true.

2022.0.05 and higher