SDDMS Runtime Options
SDDMS is a single application (FuseIT.SDDMS) that has three modes of operation that can be triggered by command line arguments or settings in the config file.
1. Data Export Mode
Choose this mode by specifying "/DataExport" as the first argument. You need to use a Salesforce connection string name and ensure a connection string has been added to the config file.
The following ways can be used to reference the connection string:
- FuseIT.SDDMS /DataExport
This uses the default connection string named, "SalesforceConnectionString", in the config file
It will use the value of "DataExportPath" in config file, as the path where the dataExport zip files will be stored.
e.g execute this command line (note spaces): FuseIT.SDDMS /DataExport - FuseIT.SDDMS /DataExport /scs:YourSalesforceConnectionStringName "path"
This uses your custom connection string with the name in the config file
e.g execute this command line (note spaces) - FuseIT.SDDMS /DataExport /scs:YourSalesforceConnectionStringName "path"
where /scs is the required Salesforce connection prefix and
path is the file directory where the data export files should be saved e.g. c:/Myplace
2. Database Generation Mode
Choose this mode by specifying "/DatabaseGen" as the first argument. To use this mode you must specify SQL connection string in the config file.
The following ways can be used to reference the connection string:
- FuseIT.SDDMS /DatabaseGen
This uses the default connection string named, "SqlAdminConnectionString", in the config file to connect to SQL Server.
It will use the value of "DataExportPath" in config file, as the path where the dataExport zip files are stored.
e.g execute this command line (note spaces) - FuseIT.SDDMS /DatabaseGen - FuseIT.SDDMS /DatabaseGen /sqlcs:YourSqlConnectionStringName "path"
This uses your custom connection strings with the names in the config file.
e.g execute this command line (note spaces) - FuseIT.SDDMS /DatabaseGen /sqlcs:YourSqlConnectionStringName "path"
where /sqlcs is the required SQL Server connection string prefix and
path is the file directory from where the data export files are saved e.g. c:/Myplace
3. Data Export and Database Generation Mode
Choose this mode by specifying "/DataExportAndDatabaseGen" as the first argument. Use Salesforce and SQL Server connection String name and ensure your connection strings have been added to the config file
The following ways can be used to reference the connection string:
- FuseIT.SDDMS /DataExportAndDatabaseGen
This uses the default connection strings named, "SalesforceConnectionString" and "SqlAdminConnectionString", in the config file.
It uses the values of all the other required parameters from the config file.
e.g execute this command line (note spaces) - FuseIT.SDDMS /DataExportAndDatabaseGen - FuseIT.SDDMS /DataExportAndDatabaseGen /scs:YourSalesforceConnectionStringName /sqlcs:YourSqlConnectionStringName "path"
This uses your custom connection strings with the names in the config file.
e.g execute this command line (note spaces) - FuseIT.SDDMS /DataExportAndDatabaseGen /scs:YourSalesforceConnectionStringName /sqlcs:YourSqlConnectionStringName "path"
where /scs is the required Salesforce connection string prefix,
/sqlcs is the required SQL Server connection string prefix and
path is the file directory from where the data export files are saved e.g. c:/Myplace
4. Web Application Generation Mode
Choose this mode by specifying "/WebAppGen" as the first argument.
The following ways can be used to reference the connection string:
- FuseIT.SDDMS /WebAppGen
This uses the default connection string named, "SqlAdminConnectionString", in the config file to connect to SQL Server.
e.g execute this command line (note spaces) - FuseIT.SDDMS /WebAppGen - FuseIT.SDDMS /WebAppGen /sqlcs:YourSqlConnectionStringName
This uses your custom connection string with the name in the config file
e.g execute this command line (note spaces) - /WebAppGen /sqlcs:YourSqlConnectionStringName
where /sqlcs is the required Salesforce connection prefix
Note:- The values of "appEdmFolder", "modelName" and "webApplicationProject" from the config file nested in appSettings section are required for this mode.
5. Database Generation and Web Application Generation Mode
Choose this mode by specifying "/DataBaseGenAndWebAppGen" as the first argument.
The following ways can be used to reference the connection string:
- FuseIT.SDDMS /DataBaseGenAndWebAppGen
This uses the default connection string named, "SqlAdminConnectionString", in the config file.
e.g execute this command line (note spaces) - FuseIT.SDDMS /DataBaseGenAndWebAppGen - FuseIT.SDDMS /DataBaseGenAndWebAppGen /sqlcs:YourSqlConnectionStringName "path"
This uses your custom connection strings with the names in the config file.
e.g execute this command line (note spaces) - FuseIT.SDDMS /DataBaseGenAndWebAppGen /sqlcs:YourSqlConnectionStringName "path"
where /sqlcs is the required SQL Server connection string prefix and
path is the file directory from where the data export files are saved e.g. c:/Myplace
6. Data Export, Database Generation and Web Application Generation Mode
Choose this mode by specifying "/CompleteGen" as the first argument.
The following ways can be used to reference the connection string:
- FuseIT.SDDMS /CompleteGen
This uses the default connection strings named, "SalesforceConnectionString" and "SqlAdminConnectionString", in the config file.
It uses the values of all the other required parameters from the config file.
e.g execute this command line (note spaces) - FuseIT.SDDMS /CompleteGen - FuseIT.SDDMS /CompleteGen /scs:YourSalesforceConnectionStringName /sqlcs:YourSqlConnectionStringName "path"
This uses your custom connection strings with the names in the config file.
e.g execute this command line (note spaces) - FuseIT.SDDMS /CompleteGen /scs:YourSalesforceConnectionStringName /sqlcs:YourSqlConnectionStringName "path"
where /scs is the required Salesforce connection string prefix,
/sqlcs is the required SQL Server connection string prefix and
path is the file directory from where the data export files are saved e.g. c:/Myplace