ODBC Driver for Microsoft Dynamics 365

Build 22.0.8462

Executing Queries

This section describes how to execute queries using MySQL remoting from any tool that can connect to MySQL.

When executing queries, you use a two-part name format, as shown below,

[<Schema Name (normally but not always the service name)>].[<Table Name>] 
where
  • Schema Name is the name of the system schema or user-defined schema.
  • Table Name is the name of the table you are copying data from.

SELECT Statements

To create new records:
SELECT * FROM [Dynamics365].[GoalHeadings] WHERE Name = 'MyAccount' 
Note that if the data source supports case-sensitive identifiers, it is not possible to query tables of the same name that only vary by upper or lower case-sensitive (ex: Account and ACCOUNT in the same schema). This is because MySQL treats identifiers as case-insensitive, so multiple tables of the same name in a single schema are fundamentally incompatible with the MySQL protocols.

INSERT, UPDATE, and DELETE Statements

To insert, update, or delete a single row of data (that is, not a batch of records), you need to use the two-part name. For example:
INSERT INTO [Dynamics365].[GoalHeadings] (Name) VALUES ('MyAccount'); 

Bulk Operations

To perform bulk operations, you can use syntax similar to the following:

You can run a bulk INSERT using a SELECT query in place of a VALUES list.

INSERT INTO [Dynamics365].[GoalHeadings] ([Name]) 
SELECT [Name] FROM [Local_GoalHeadings] 
You can run a bulk UPATE using a JOIN with a local table.
UPDATE [Dynamics365].[GoalHeadings]  
INNER JOIN [Local_GoalHeadings] ON [Local_GoalHeadings].[GoalHeadingId] = [Dynamics365].[GoalHeadings].[GoalHeadingId] 
SET [Dynamics365].[GoalHeadings].[Name].[Local_Name] 
You can run a bulk DELETE using the IN filter with sub-SELECT query.
DELETE FROM [Dynamics365].[GoalHeadings WHERE [GoalHeadingId] IN (SELECT [GoalHeadingId] FROM Local_GoalHeadings) 

Execute Stored Procedures

Use the following to run the stored procedure:
Call CreateJob('Insert')

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462