Dynamics 365 Customer Insights
Building the JDBC URL
After installing the license, access the connection management page by executing the command java -jar kingswaysoft.jdbc.jar
. Enter the necessary details, and the program will automatically generate the JDBC connection URL. Users can click Test Connection to test the generated URL and Copy to Clipboard to copy the connection string for use within the application where the JDBC driver is being used.
Note: If the license is not installed, you can still use the connection manager to generate a JDBC URL; however, the 'Test Connection' feature will be disabled.
General Page
The General page allows you to specify connection properties and login credentials for the Dynamics 365 Customer Insights REST service.
- General Settings
-
- API Throttling Rate
-
The API Throttling Rate will limit the number of requests that can be sent per second. Set this value to 0 to disable API throttling.
- Subscription Key
-
The Subscription Key is required to authenticate and authorize API requests to Dynamics 365 Customer Insights.
- Instance
-
The Instance is required and allows you to specify the instance that should be targeted in requests made to the API.
- Authentication
-
- Authentication Mode
-
The Authentication Mode option allows you to choose the method used to authenticate with the Dynamics 365 Customer Insights API. Available options are:
- OAuth Authorization Code
- Client Credentials
- Certificate
Authentication Methods for Dynamics 365 Customer Insights
OAuth Authorization Code
A generated access token can be used to establish a connection.
- Access Token
- The access token can be used to establish a connection.
<dt><strong>Generate Token File</strong></dt>
<dd>
<p>This button completes the OAuth authentication process in order to generate a new access token.</p>
<ul>
<li><strong>Tenant Id:</strong> The Tenant Id option allows you to specify the Tenant Id where the Client App Id is verified to complete the authorization process.</li>
<li><strong>Client Id:</strong> The Client Id option allows you to specify the unique ID which identifies the application making the request.</li>
<li><strong>Client Secret:</strong> The Client Secret option allows you to specify the client secret belonging to your app.</li>
<li><strong>Redirect Url:</strong> The Redirect Url option allows you to specify the Redirect Url to complete the authentication process.</li>
<li><strong>Scope:</strong> The scope option allows you to select the scopes to be requested when generating a token file. Select from the list of available scopes or add your own in the text field.</li>
<li><strong>PKCE (Enhanced Security):</strong> The PKCE (Proof Key for Code Exchange) option may be enabled for PKCE App Type. Ensures that the client that initiates the OAuth flow is the same client that completes flow.</li>
</ul>
</dd>
Client Credentials
Enter Tenant Id, Client App Id and Client Secret to establish a connection.
- Tenant Id
- The Tenant Id option allows you to specify the Tenant Id where the Client App Id is verified to complete the authorization process.
<dt><strong>Client Id</strong></dt>
<dd>The Client Id option allows you to specify the unique ID which identifies the application making the request.</dd>
<dt><strong>Client Secret</strong></dt>
<dd>The Client Secret option allows you to specify the client secret belonging to your app.</dd>
Certificate
Choose to use a saved certificate file and certificate password to establish a connection.
- Tenant Id
- The Tenant Id option allows you to specify the Tenant Id where the Client App Id is verified to complete the authorization process.
<dt><strong>Client Id</strong></dt>
<dd>The Client Id option allows you to specify the unique ID which identifies the application making the request.</dd>
<dt><strong>Path To Certificate</strong></dt>
<dd>The path to an existing certificate file.</dd>
<dt><strong>Certificate Password</strong></dt>
<dd>The password for the specified certificate file.</dd>
After all the connection information has been provided, click the "Test Connection" button to test if the user credentials entered can successfully connect to the selected service.
Advanced Settings Page
The Advanced Settings page allows you to specify advanced settings for the connection.
- Proxy Mode
-
The Proxy Mode option allows you to specify how you want to configure the proxy server setting. There are three options available.
- No Proxy
- Auto-detect (Use system configured proxy)
- Manual
- Proxy Server
-
Using the Proxy Server option allows you to specify the name of the proxy server for the connection.
- Port
-
The Port option allows you to specify the port number of the proxy server for the connection.
- Username (Proxy Server Authentication)
-
The Username option (under Proxy Server Authentication) allows you to specify the proxy user account.
- Password (Proxy Server Authentication)
-
The Password option (under Proxy Server Authentication) allows you to specify the proxy user's password.
- Timeout (secs)
-
The Timeout (secs) option allows you to specify a timeout value in seconds for the connection. The default value is 120 seconds. Specify 0 for an infinite timeout.
- Retry on Intermittent Errors
-
The retry on intermittent errors determines if requests will be retried when there is an error. If this option is checked requests will be retried up to 3 times.
- Ignore Certificate Errors
-
This option can be used to ignore those SSL certificate errors when connecting to the target server.
Warning: Enabling the "Ignore Certificate Errors" option is generally NOT recommended, particularly for production instances. Unless there is a strong reason to believe the connection is secure - such as the network communication is only happening in an internal infrastructure, this option should be unchecked for best security.
Note: When this option is enabled, it applies to all HTTP-based SSL connections in the same job process.
- Concurrent Writing Threads
-
This option can be used to set the number of threads to be used during write operations. This can improve performance during large-volume write operations.
Using the JDBC Driver
Explore detailed examples in this section that demonstrate the application of JDBC classes such as Connection, Statement, and ResultSet to effectively manage interactions with Dynamics 365 Customer Insights data. This section covers the use of regular statements and prepared statements for executing complex or frequently executed queries.
Executing Statements
Once you've connected from your code (see Connecting with DriverManager and Connecting with DataSource), you can execute SQL statements using the Statement class. Refer to the Executing Prepared Statements section for information on how to execute parameterized statements.
SELECT
Use the Statement class's generic execute method or the executeQuery method to execute SQL statements that return data. To retrieve the results of a query, you would then call the getResultSet method of the Statement.
String sql = "SELECT * FROM instances/manage/measures WHERE instanceId = '75bc78c3-9d19-4f55-8d4f-b8d77aa1ebdd'"; try { ResultSet resultSet = statement.executeQuery(sql); LOGGER.info(resultSet.toString()); } catch (SQLException e) { LOGGER.severe(e.toString()); }
INSERT
Use either the generic execute method or the executeUpdate method of the Statement class to execute an INSERT operation.
The results of SQL queries are saved in a ResultSet. You can retrieve the ResultSet after execution to view the inserted data's ID, exceptions raised during execution, and details of the affected data.
String sql = "INSERT INTO instances/manage/segments (name, instanceId, segmentQueryExpression.type,state," + "evaluationStatus.jobStatus,evaluationStatus.evaluationDate,evaluationStatus.entityCount," + "evaluationStatus.lastSuccessfulRunId,segmentQueryExpression.rowsets, segmentQueryExpression.audienceType) " + "VALUES ('nametest', '75bc78c3-9d19-4f55-8d4f-b8d77aa1ebdd','Structured','Active','CompletedSuccess', " + "'2025-08-21T16:55:19.0829314Z',1,'34f000e4-ecff-4e28-9f5b-ddead7c51c51','[{\"rowsetOperation\":\"None\",\"criteria\":" + "{\"kind\":\"Default\",\"logicalOperator\":\"And\",\"comparisonOperator\":\"Equals\",\"childCriterias\":[{\"kind\": " + "\"Default\",\"attribute\":\"DCRM_account.modifiedon\",\"comparisonOperator\":\"IsWithinLast\",\"childCriterias\":[], " + " \"value\":\"\",\"listOfValues\":[\"days\",\"\",\"-1\",\"5\"]}],\"listOfValues\":[]},\"paths\":[[\"Customer\", " + "\"Customer_DCRM_account_accountid_DCRM_account_accountid\",\"DCRM_account\"]],\"rowsetId\": " + "\"3f1e7eda-1ba3-4ede-a8a1-a41be4f9fe8a\"}]', 'Customer')"; try { int result = statement.executeUpdate(sql); LOGGER.info(statement.getResultSet().toString()); } catch (SQLException e) { LOGGER.severe(e.toString()); }
id,errorcode,errormessage,processdata,haserrors nameba2ed,null,null,{"name":"nameba2ed","segmentQueryExpression":{"type":"Structured","rowsets":[{"rowsetOperation":"None","criteria":{"kind":"Default","logicalOperator":"And","comparisonOperator":"Equals","childCriterias":[{"kind":"Default","attribute":"DCRM_account.modifiedon","comparisonOperator":"IsWithinLast","childCriterias":[],"value":"","listOfValues":["days","","-1","5"]}],"listOfValues":[]},"paths":[["Customer","Customer_DCRM_account_accountid_DCRM_account_accountid","DCRM_account"]],"rowsetId":"3f1e7eda-1ba3-4ede-a8a1-a41be4f9fe8a"}],"audienceType":"Customer"},"state":"Active","evaluationStatus":{"jobStatus":"CompletedSuccess","evaluationDate":"2025-08-21T16:55:19.082Z","entityCount":1,"lastSuccessfulRunId":"34f000e4-ecff-4e28-9f5b-ddead7c51c51"}},false
UPDATE
Use either the generic execute method or the executeUpdate method of the Statement class to execute an UPDATE operation.
The results of SQL queries are saved in a ResultSet. You can retrieve the ResultSet after execution to view the updated data's ID, exceptions raised during execution, and details of the affected data.
String sql = "UPDATE instances/manage/segments SET description = 'updatedSection1', segmentQueryExpression.type = 'Structured', " + "segmentQueryExpression.audienceType = 'Customer' WHERE instanceId = '75bc78c3-9d19-4f55-8d4f-b8d77aa1ebdd' " + "AND segmentName='nameba2ed'"; try { statement.executeUpdate(sql); LOGGER.info(statement.getResultSet().toString()); } catch (SQLException e) { LOGGER.severe(e.toString()); }
id,errorcode,errormessage,processdata,haserrors nameba2ed,null,null,{"description":"updatedSection1","segmentQueryExpression":{"type":"Structured","audienceType":"Customer"}},false
DELETE
Use either the generic execute method or the executeUpdate method of the Statement class to execute a DELETE operation.
The results of SQL queries are saved in a ResultSet. You can retrieve the ResultSet after execution to view the deleted data's ID, exceptions raised during execution, and details of the affected data.
String sql = "DELETE FROM instances/manage/segments WHERE instanceId = '75bc78c3-9d19-4f55-8d4f-b8d77aa1ebdd' " + "AND segmentName = 'nameba2ed'"; try { statement.executeUpdate(sql); LOGGER.info(statement.getResultSet().toString()); } catch (SQLException e) { LOGGER.severe(e.toString()); }
id,errorcode,errormessage,processdata,haserrors null,null,null,null,false
Executing Prepared Statements
Using a PreparedStatement can improve performance when you need to execute a SQL statement multiple times with different parameters. Unlike a Statement object, a PreparedStatement object is provided with a SQL statement when it is created, which can then be executed with different values each time. This special type of statement is derived from the more general class, Statement.
Below are the steps outlining how to execute a prepared statement:
- Create a PreparedStatement: Use the prepareStatement method of the Connection class to instantiate a PreparedStatement. Refer to Connecting with DriverManager or Connecting with DataSource for information related to establishing connections.
- Set Parameters: Declare parameters by calling the corresponding setter method of the PreparedStatement. Note: The parameter indices start at 1.
- Execute the Statement: Use the generic execute or executeUpdate method of the PreparedStatement.
- Retrieve Results: Call the getResultSet method of the Prepared Statement to obtain the query results, which will be returned as a ResultSet.
- Iterate Over the Result Set: Use the next method of the ResultSet to iterate through the results. To obtain column information, utilize the ResultSetMetaData class. Instantiate a ResultSetMetaData object by calling the getMetaData method of the ResultSet.
SELECT
Use the Statement class's generic execute method or the executeQuery method to execute SQL statements that return data.
The results of SQL queries are saved in a ResultSet. You can retrieve the ResultSet after execution to view the retrieved data.
String sql = "SELECT * FROM instances/manage/measures WHERE instanceId = ?"; try { PreparedStatement ps = connection.prepareStatement(sql); ps.setString(1, "75bc78c3-9d19-4f55-8d4f-b8d77aa1ebdd"); boolean ret = ps.execute(sql); if (ret) { ResultSet rs = ps.getResultSet(); LOGGER.info(rs.toString()); } } catch (SQLException e) { LOGGER.severe(e.toString()); }
INSERT
Use either the generic execute method or the executeUpdate method of the Statement class to execute an INSERT operation.
The results of SQL queries are saved in a ResultSet. Users can retrieve the ResultSet after execution to view the ID of inserted data, exceptions raised during execution, and the data affected by the insertion.
String sql = "INSERT INTO instances/manage/segments (name, instanceId, segmentQueryExpression.type,state," + "evaluationStatus.jobStatus,evaluationStatus.evaluationDate,evaluationStatus.entityCount," + "evaluationStatus.lastSuccessfulRunId,segmentQueryExpression.rowsets, segmentQueryExpression.audienceType) " + "VALUES (?, '75bc78c3-9d19-4f55-8d4f-b8d77aa1ebdd','Structured','Active','CompletedSuccess', " + "'2025-08-21T16:55:19.0829314Z',1,'34f000e4-ecff-4e28-9f5b-ddead7c51c51','[{\"rowsetOperation\":\"None\",\"criteria\": " + "{\"kind\":\"Default\",\"logicalOperator\":\"And\",\"comparisonOperator\":\"Equals\",\"childCriterias\":[{\"kind\": " + "\"Default\",\"attribute\":\"DCRM_account.modifiedon\",\"comparisonOperator\":\"IsWithinLast\",\"childCriterias\":[], " + "\"value\":\"\",\"listOfValues\":[\"days\",\"\",\"-1\",\"5\"]}],\"listOfValues\":[]},\"paths\":[[\"Customer\", " + "\"Customer_DCRM_account_accountid_DCRM_account_accountid\",\"DCRM_account\"]],\"rowsetId\": " + "\"3f1e7eda-1ba3-4ede-a8a1-a41be4f9fe8a\"}]', 'Customer')"; try { PreparedStatement ps = connection.prepareStatement(sql); ps.setString(1, "testname1"); ps.executeUpdate(); LOGGER.info(ps.getResultSet().toString()); } catch (SQLException e) { LOGGER.severe(e.toString()); }
id,errorcode,errormessage,processdata,haserrors testname1,null,null,{"name":"testname1","segmentQueryExpression":{"type":"Structured","rowsets":[{"rowsetOperation":"None","criteria":{"kind":"Default","logicalOperator":"And","comparisonOperator":"Equals","childCriterias":[{"kind":"Default","attribute":"DCRM_account.modifiedon","comparisonOperator":"IsWithinLast","childCriterias":[],"value":"","listOfValues":["days","","-1","5"]}],"listOfValues":[]},"paths":[["Customer","Customer_DCRM_account_accountid_DCRM_account_accountid","DCRM_account"]],"rowsetId":"3f1e7eda-1ba3-4ede-a8a1-a41be4f9fe8a"}],"audienceType":"Customer"},"state":"Active","evaluationStatus":{"jobStatus":"CompletedSuccess","evaluationDate":"2025-08-21T16:55:19.082Z","entityCount":1,"lastSuccessfulRunId":"34f000e4-ecff-4e28-9f5b-ddead7c51c51"}},false
UPDATE
Use either the generic execute method or the executeUpdate method of the Statement class to execute an UPDATE operation.
The results of SQL queries are saved in a ResultSet. Users can retrieve the ResultSet after execution to view the ID of updated data, exceptions raised during execution, and the data affected by the update.
String sql = "UPDATE instances/manage/segments SET description = ?, segmentQueryExpression.type = 'Structured', segmentQueryExpression.audienceType = 'Customer' WHERE instanceId = '75bc78c3-9d19-4f55-8d4f-b8d77aa1ebdd' AND segmentName = ?"; try { PreparedStatement ps = connection.prepareStatement(sql); ps.setString(1, "test 002"); ps.setString(2, "testname1"); ps.executeUpdate(); LOGGER.info(ps.getResultSet().toString()); } catch (SQLException e) { LOGGER.severe(e.toString()); }
id,errorcode,errormessage,processdata,haserrors testname1,null,null,{"description":"test 002","segmentQueryExpression":{"type":"Structured","audienceType":"Customer"}},false
DELETE
Use either the generic execute method or the executeUpdate method of the Statement class to execute a DELETE operation.
The results of SQL queries are saved in a ResultSet. You can retrieve the ResultSet after execution to view the deleted data's ID, exceptions raised during execution, and details of the affected data.
String sql = "DELETE FROM instances/manage/segments WHERE instanceId = '75bc78c3-9d19-4f55-8d4f-b8d77aa1ebdd' AND segmentName = ?"; try { PreparedStatement ps = connection.prepareStatement(sql); ps.setString(1, "testname1"); ps.executeUpdate(); LOGGER.info(ps.getResultSet().toString()); } catch (SQLException e) { e.printStackTrace(); }
id,errorcode,errormessage,processdata,haserrors null,null,null,null,false
Metadata Discovery
This section provides examples on how to retrieve table and column metadata using the getTables, getColumns, and getPrimaryKeys methods from the DatabaseMetaData interface. These are essential for discovering database structures.
Tables
The getTables method from the DatabaseMetaData interface can be used to retrieve a list of tables.
This method only retrieves tables that are not write-only.
To get a list of tables which include write-only tables, query the table [system.tables](/products/jdbc-driver-pack/help-manual/advancedfeatures#systemtables).
try { ResultSet rs = connection.getMetaData().getTables(null, null, null, null); LOGGER.info("\r\n" + rs.toString()); } catch (SQLException e) { LOGGER.severe(e.getMessage()); }
TABLE_CAT,TABLE_SCHEM,TABLE_NAME,TABLE_TYPE,REMARKS null,null,instances,Table,nullnull,null,instances/data,Table,nullnull,null,instances/dataprofile,Table,nullnull,null,instances/hierarchies,Table,nullnull,null,instances/manage/datasources,Table,nullnull,null,instances/manage/entities,Table,nullnull,null,instances/manage/entities/entitysize,Table,nullnull,null,instances/manage/measures,Table,nullnull,null,instances/manage/relationships,Table,nullnull,null,instances/manage/search,Table,nullnull,null,instances/manage/segments,Table,nullnull,null,instances/manage/systemrelationships,Table,nullnull,null,instances/profile/activityresponsemetadata,Table,nullnull,null,instances/profile/keyring,Table,nullnull,null,instances/profilestore/stateinfo,Table,nullnull,null,instances/rbac/assignments,Table,nullnull,null,instances/rbac/myrole,Table,nullnull,null,instances/rbac/roles,Table,nullnull,null,instances/workflows/history,Table,nullnull,null,instances/workflows/jobs,Table,nullnull,null,instances/workflows/schedules,Table,nullnull,null,instances/workflows/schedules/supportedTimezones,Table,nullnull,null,instances/workflows/status,Table,nullnull,null,system.columns,Table,nullnull,null,system.tables,Table,null
The getTables method returns the following metadata columns:
Column Name | Data Type | Description |
---|---|---|
TABLE_CAT | String | The catalog that contains the table. |
TABLE_SCHEM | String | The schema of the table. |
TABLE_NAME | String | The name of the table. |
TABLE_TYPE | String | The type of the table (e.g., TABLE or VIEW). |
REMARKS | String | An optional description of the table. |
Columns
Use the getColumns method of the DatabaseMetaData interface to retrieve detailed information about database columns. To narrow the results to a specific table, specify the table name using the parameter table_name
.
This method returns columns only for tables that are not write-only.
To get columns for tables which are write-only, query the table [system.columns](/products/jdbc-driver-pack/help-manual/advancedfeatures#systemcolumns).
try { ResultSet rs = connection.getMetaData().getColumns(null, null, "instances/manage/entities", null); LOGGER.info(rs.toString()); } catch (SQLException e) { e.printStackTrace(); }
TABLE_CAT,TABLE_SCHEM,TABLE_NAME,COLUMN_NAME,DATA_TYPE,TYPE_NAME,COLUMN_SIZE,BUFFER_LENGTH,DECIMAL_DIGITS,NUM_PREC_RADIX,NULLABLE,REMARKS,COLUMN_DEF,SQL_DATA_TYPE,SQL_DATETIME_SUB,CHAR_OCTET_LENGTH,ORDINAL_POSITION,IS_NULLABLE,IS_AUTOINCREMENT,IS_GENERATEDCOLUMN,DTS_TYPE null,null,instances/manage/entities,annotations,12,VARCHAR,0,null,0,0,null,null,null,12,null,null,null,null,null,null,DT_WSTR null,null,instances/manage/entities,attributes,12,VARCHAR,0,null,0,0,null,null,null,12,null,null,null,null,null,null,DT_WSTR null,null,instances/manage/entities,dataSourceName,12,VARCHAR,0,null,0,0,null,null,null,12,null,null,null,null,null,null,DT_WSTR null,null,instances/manage/entities,dataflowId,12,VARCHAR,36,null,0,0,null,null,null,12,null,null,null,null,null,null,DT_GUID null,null,instances/manage/entities,dataflowType,12,VARCHAR,0,null,0,0,null,null,null,12,null,null,null,null,null,null,DT_WSTR null,null,instances/manage/entities,datasourceId,12,VARCHAR,36,null,0,0,null,null,null,12,null,null,null,null,null,null,DT_GUID null,null,instances/manage/entities,deltaLakeTimestamp,93,TIMESTAMP,null,null,0,0,null,null,null,93,null,null,null,null,null,null,DT_DBTIMESTAMP null,null,instances/manage/entities,deltaLakeVersion,-5,BIGINT,null,null,0,0,null,null,null,-5,null,null,null,null,null,null,DT_I8 null,null,instances/manage/entities,deltaPartitionsPath,12,VARCHAR,null,null,0,0,null,null,null,12,null,null,null,null,null,null,DT_WSTR null,null,instances/manage/entities,entityType,12,VARCHAR,0,null,0,0,null,null,null,12,null,null,null,null,null,null,DT_WSTR null,null,instances/manage/entities,friendlyName,12,VARCHAR,null,null,0,0,null,null,null,12,null,null,null,null,null,null,DT_WSTR
The getColumns method returns the following columns:
Column Name | Data Type | Description |
---|---|---|
TABLE_CAT | String | The database name. |
TABLE_SCHEM | String | The table schema. |
TABLE_NAME | String | The table name. |
COLUMN_NAME | String | The column name. |
DATA_TYPE | Integer | The data type represented by a constant value from java.sql.Types. |
TYPE_NAME | String | The data type name used by the driver. |
COLUMN_SIZE | Integer | The length in characters of the column or the numeric precision. |
BUFFER_LENGTH | Integer | The buffer length. |
DECIMAL_DIGITS | Integer | The column scale or number of digits to the right of the decimal point. |
NUM_PREC_RADIX | Integer | The radix, or base. |
NULLABLE | Integer | Whether the column can contain null as defined by the following JDBC DatabaseMetaData constants: columnNoNulls (0) or columnNullable (1). |
REMARKS | String | The comment or note associated with the object. |
COLUMN_DEF | String | The default value for the column. |
SQL_DATA_TYPE | Integer | Reserved by the specification. |
SQL_DATETIME_SUB | Integer | Reserved by the specification. |
CHAR_OCTET_LENGTH | Integer | The maximum length of binary and character-based columns. |
ORDINAL_POSITION | Integer | The position of the column in the table, starting at 1. |
IS_NULLABLE | String | Whether a null value is allowed: YES or NO. |
IS_AUTOINCREMENT | String | Whether the column value is assigned by Dynamics 365 Customer Insights in fixed increments. |
IS_GENERATEDCOLUMN | String | Whether the column is generated: YES or NO. |
DTS_TYPE | String | Object DTS attribute type. |
Primary Keys
The getPrimaryKeys method in the DatabaseMetaData interface is used to retrieve metadata about primary keys for a given table in Dynamics 365 Customer Insights.
try { ResultSet resultSet = connection.getMetaData().getPrimaryKeys(null, null, "instances"); LOGGER.info("\r\n" + resultSet.toString()); Assertions.assertNotNull(resultSet); } catch (SQLException e) { LOGGER.severe(e.getMessage()); }
TABLE_NAME,PRIMARY_COLUMN_NAME instances,name
The getPrimaryKeys method returns the following columns:
Column Name | Data Type | Description |
---|---|---|
TABLE_NAME | String | The name of the table that contains the primary key. |
PRIMARY_COLUMN_NAME | String | The name of the column that serves as the primary key for the table. |
Connection Settings
Connection Setting | Type | Default Value | Description |
---|---|---|---|
ApiThrottleRate | Integer | 10 | The maximum number of API requests a client can make to the server within a specific time period, defined in requests per second. |
AuthenticationMode | String | "Authorization Code" | AuthenticationMode specifies the method used to authenticate when connecting to Dynamics 365 Customer Insights API. |
CacheExpirationTime | Integer | 30 | Defines the expiration time for cache. A value of 0 disables caching. |
CertificatePassword | String | "" | The password used to access the key store file. |
ClientId | String | "" | The client ID you have selected or created in Dynamics 365 Customer Insights. |
ClientSecret | String | "" | The client secret you have selected or created in Dynamics 365 Customer Insights. |
ConcurrentWritingThreads | Integer | 1 | The number of threads for executing operations in parallel. A value of 0 will disable multi threading. |
ConnectionTimeout | Integer | 30 | ConnectionTimeout is the maximum amount of time the program will wait to set up a connection to the Dynamics 365 Customer Insights API. |
IgnoreCertificateErrors | Boolean | false | Specifies whether to verify the certificate when connecting to Dynamics 365 Customer Insights. If certificate verification is not required, you can set this value to 'true'. |
IgnoreError | Boolean | false | Determines if the program continues executing SQL statements after encountering an error. |
InstanceId | String | "" | The InstanceId is required and allows you to specify the instance that should be targeted in requests made to the API. |
LogFileSize | String | "10485760" | A string specifying the maximum size in bytes for a log file. |
LogLevel | String | "INFO" | The logging level for the JDBC driver. |
LogPath | String | "./jdbcLogs" | The directory where log files are stored. |
OemKey | String | "" | The OEM license key. |
PathToCertificate | String | "" | The file path where the keystore file for connecting to the Customer Insights. |
PathToTokenFile | String | "" | PathToTokenFile allows you to specify the path to the token file on the file system. |
ProxyMode | String | NoProxy | This setting configures the proxy. Allowed values are "NoProxy", "AutoDetect" and "Manual". |
ProxyPassword | String | "" | The password to be used to authenticate to the proxy. |
ProxyServer | String | "" | The host of the proxy server. |
ProxyServerPort | Integer | 0 | The port of the proxy server. |
ProxyUsername | String | "" | The username to be used to authenticate to the proxy. |
ReadBatchSize | Integer | 100 | ReadBatchSize is used to set how many records can be read from Dynamics 365 Customer Insights in a single call. |
ResultPath | String | "" | The path where the execution result files are saved. |
RetryOnIntermittentErrors | Boolean | true | The RetryOnIntermittentErrors parameter indicates whether to retry the connection when it might occasionally fail due to temporary issues. |
SaveResult | Boolean | false | The SaveResult parameter indicates whether to save the execution results to a file. |
ServiceName | String | "" | The ServiceName refers to the name of the service API selected by the user. |
ServiceTimeout | Integer | 120 | The ServiceTimeout is the timeout to receive the full response from Dynamics 365 Customer Insights API. |
Suppress404NotFoundError | Boolean | true | When set to true, if a query results in an HTTP 404 error, a result set will still be created. When set to false, an error is logged instead and no result set is created. |
SubscriptionKey | String | "" | The Subscription Key is required to authenticate and authorize API requests to Dynamics 365 Customer Insights. |
TenantId | String | "" | The Azure Tenant ID used to access Customer Insights. |
TokenPassword | String | "" | The password used to read the token file. |
WriteBatchSize | Integer | 1 | WriteBatchSize is used to set how many records can be written to Dynamics 365 Customer Insights in a single call. |