Advanced OPC Data Logger

Trust In Confidence!

For Windows 2000 - Windows 11 (2022) (incl. Server, x86 and x64). Latest version: 3.10.0 build 306. March 6, 2024.


OPC-ODBC bridge. Inserting OPC data to the MS Access database through ODBC

Objective:

Several OPC tags are to be controlled and recorded to a database. Each variable is to be put in its own column.

A table in the MS Access database has the following structure:

OPC ODBC. Table structure
Fig.1. OPC ODBC. Table structure

This table structure is convenient with a small number of variables that are to correspond with a certain timestamp.

Requirements:

  • Advanced OPC Data Logger Professional, Enterprise, or a trial version;
  • DDE Server module for OPC logger (optionally, for testing purposes);
  • ODBC Database module for OPC logger.

Assumptions:

You have worked with OPC servers already. You can establish a connection between an OPC client and an OPC. You know how to browse the server's address space and select OPC tags.

Solution:

We need to add our variables to our OPC logger. We need to add the configuration to the application if you haven't done that earlier. To create a configuration, use the button with the plus in the application's main window. In the dialog window that appears, go to the "OPC Settings" tab (Fig.2).

OPC ODBC. OPC Settings
Fig.2. OPC ODBC. OPC Settings

On this tab, we need to create:

  1. An OPC tag group and define its properties (Fig.3.);
  2. Add necessary OPC tags (Fig.4.).

OPC ODBC. Group properties
Fig.3. OPC ODBC. Group properties

If the "Active" option is enabled, data is gathered from the OPC server and exported.

If the "Export whole group" option is enabled, data from the entire group is exported simultaneously. If the value of the variable has changed, exported is the new value; otherwise, exported is the previous value from the internal buffer. That means that each column in the database will have its own value. If this option is disabled, the data can be recorded in the database as four columns (which are selected with additional options):

  1. Variable name
  2. Variable value
  3. Variable quality
  4. Variable timestamp

Example of data in the application's main window if the option is enabled:

OPC Logger data example
Each variable has a unique name. This is the name the variable will be exported with (Fig.5).

Example of data in the application's main window if the option is disabled:

OPC Logger data example

All variables have the same name:

  • ITEM_NAME - variable that contains the name of the modified OPC tag.
  • ITEM_VALUE - variable that contains the value of the modified OPC tag.
  • UPDATE_DATE_TIME - variable that contains the timestamp of the modified OPC tag.
  • ITEM_QUALITY - variable that contains the quality of the modified OPC tag.

In this example, we need to export each OPC variable to its own column. Therefore, the "Export whole group" option must be enabled. As a result, after the variables have been updated, we will see the data to be exported in the application's main window (Fig.5).

OPC ODBC. Adding OPC variables
Fig.4. OPC ODBC. Adding OPC variables

  1. Enter the name of the computer that runs the OPC server and then click the "Refresh" button. If the server runs on the local computer, leave this field blank or enter LOCALHOST in it. To enable accessing remote servers, you need to install the OPC Core Components Redistributable suite, which you can freely download from the opcfoundation.org website. Then configure DCOM for accessing remote servers.
  2. Select the server name from the list. If the server is not on the list, you have not properly configured DCOM or have not installed OPC Core Components Redistributable. In this case, you can enter the server's unique ID in the "ClsID" field. Once the server is selected, click the "Connect" button.
  3. On the list of variables that appears, select the tags you want to add. If the list is empty, the server doesn't support receiving variable lists. Then enter the variable list manually.
  4. Click "OK" to add the variables to the selected group (Fig.2).

OPC ODBC.Application's main window.
Fig.5. OPC ODBC.Application's main window.

Figure 5 shows the structure of the data being exported. Each value contains three parts:

  1. The variable name is before square brackets. This name is to be used in data export modules.
  2. The data type code is in square brackets. The application uses this parameter during exporting to covert data between source and destination data types.
  3. Value (after the "=" character).

If the "Export one row for all changed item" option on figure 3 is enabled, the data will be exported as a single line, as shown in figure 5. This option is mandatory when exporting to a database. If this option is disabled, the data will look as follows:

OPC Logger data example

I.e., only changed values are exported; each variable is exported as a single line, which is convenient for reading and writing to a log file.

Now we need to configure exporting data to a database. For that, go to the "Modules-Data Export" page (Fig.6)

OPC ODBC.Selecting data export modules.
Fig.6. OPC ODBC.Selecting data export modules.

Here you can activate the DDE server module to make sure that the data is ready for exporting. Activate the module on the list and then click "OK" to apply changes. Then open this page again and select the DDE server module on the list and then click the "Configure" button. In the window that appears, the "Active items" tab should display the variables that were added earlier (Fig.7).

OPC ODBC. Active variable.
Fig.7. OPC ODBC. Active variable.

Now we need to configure the "ODBC database" data export module for inserting data to a Microsoft Access database. Activate this module on the list (Fig.6) and then click the "Configure" button.

OPC ODBC. Configuring export to a database.
Fig.8. OPC ODBC. Configuring export to a database.

Activate the options shown in figure 8. These options include writing to a database; with that, the connection with the database will be permanent and will be established only during the first time it is necessary.

On the first page (Fig.9) do the following:

  • Select the name for the ODBC connection. If no existing ODBC connection is available, you can create one in the ODBC connections system manager by clicking on the "Options" button and then clicking "Refresh";
  • Enter the path and name to the existing Microsoft Access database.

OPC ODBC. Configuring connection to a database
Fig.9. OPC ODBC. Configuring connection to a database.

Next, you need to "bind" the name of the OPC variable with the column's name in the table. You can do that on the " Binding" tab (Fig. 10).

OPC ODBC. Binding variables with table columns.
Fig.10. OPC ODBC. Binding variables with table columns.

Before you "bind" the variables and the columns, you will need to import the description of the table from the database or compose it manually by clicking on the "Add" button for each necessary column. But it is much simpler to import a description by clicking "Import" (Fig.11).

OPC ODBC. Importing table description.
Fig.11. OPC ODBC. Importing table description.

To import a table description:

  1. Click Import and accept clearing the variable list.
  2. Select the table from the list and then click OK.
  3. The description of the columns will be copied to the "Binding" tab. You can delete unnecessary columns (e.g., in this example, the ID column contains a counter, which increases automatically) and enter the variable name in the "Parser variable name" field. Ensure that the data type of the variable matches the column's data type; otherwise, errors will occur during the data export process.

Click "OK" in all dialog windows to apply changes. If everything is configured correctly, the application's main window will show the messages on the successful export of data (Fig.12) (if the protocol is activated in the application's settings), and the data will be inserted into the table (Fig.13).

OPC ODBC. Messages protocol.
Fig.12. OPC ODBC. Messages protocol.

OPC ODBC. Inserted data.
Fig.13. OPC ODBC. Inserted data.

An archive with a test OPC server, database and software configuration can be downloaded here. To use the files from the archive:

  1. Launch the OPC server once before using the prepared configuration.
  2. Import the configuration (the file with the *.ini extension) (File - Restore from backup).
  3. Edit the path to a database in the properties of the data export module.

Related articles:

OPC and DCOM Configuration on Windows 2008 and Windows 7

OPC and DCOM Configuration on Windows Server 2012 and Windows 8