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 to MSSQL: Writing several OPC tags to separate columns

If you need to not only log the changes of the OPC item values in the MSSQL database but also analyze and process them after that, it will be more convenient to create a table where there will be a separate column for every item. This method can be applied if there are not many OPC tags.


CREATE TABLE [dbo].[opc_data_2](
   [REC_ID] [int] IDENTITY(1,1) NOT NULL,
   [TIMESTAMP] [datetime] NULL,
   [ITEM1] [nchar](30) NULL,
   [ITEM2] [nchar](30) NULL
) ON [PRIMARY]

ITEM1 - will store the value of item 1;

ITEM2 - will store the value of item 2;

TIMESTAMP - will contain the date and time when the value was modified.

1. Create a new user in the database or give permissions to write and read data from the created table to an existing user.

2. Create a group of OPC tags in the program (fig. 1) with the properties shown in the picture.

MSSQL. Group properties
Fig. 1 Group properties

3. Add the necessary items to the group.

MSSQL. Item list

Fig. 2 Item list

4. Click OK. Data like that should appear in the main window of the program:

OPC Logger Data

Fig. 3 Data

Every line contains the value of all items and the additional "UPDATE_DATE_TIME" item with the timestamp.

Steps 5-7 are similar to those from the previous example "Writing a lot of OPC tags".

8. Binding (fig. 4) is slightly different from that in the previous example because the table contains a different set of columns.

MSSQL. Binding

Fig. 4 Configuring the data export plug-in. Binding.

Click "OK" to save the changes.

9. Check the status bar to make sure the data is being successfully processed (fig. 5).

Message
Fig. 5 A message about data being successfully written

Data in an MS SQL 2008 database
Fig. 6 Data in an MS SQL 2008 database

Related articles:

OPC and DCOM Configuration on Windows 2008 and Windows 7

OPC and DCOM Configuration on Windows Server 2012 and Windows 8