Types of Transaction Groups
There are four types of Transaction Groups, and they each handle data a little differently:
- Historical Groups - Quick and easy group that collects historical records
- Standard Groups - An improved version version of the historical group that can reverse the flow of data, writing database values directly to Tags.
- Block Group - Records "blocks" of data, allowing you to record multiple values per execution in a tall format.
- Stored Procedure Group - Invokes a stored procedure in the database, returning the results of any OUT or INOUT parameters to Tags.
Learn more about each type of group on the Understanding Transaction Groups page.
All Transaction Groups can execute at a set rate or on a schedule. A trigger can be used to determine when the group should record. You can use Ignition's expression language in the trigger to allow complex logic to determine when logging occurs, making precision execution easy.

Historical Data Logging
Historical Groups quickly and easily store data from the plant floor into any kind of SQL database. Items from any or all devices can be included in the same group, just drag a few Tags over and start the group running. Ignition will log the data until you tell it to stop.

Database and OPC Synchronization
Standard Groups are the most flexible group. They are capable of not only storing OPC values in the database, but can also write database values to OPC addresses or synchronize data changes between both the database and PLC. With this group you can create true realtime value tables in the database, and allow anything that can talk to the database to push values to a PLC. This is often used to create Recipe systems where the recipe values are stored in the database, and a user can select a recipe to write all your settings directly to Tags. Changing recipes is as easy as changing a Tag value or selecting a name.

Large Data Block Storage
Transfer large amounts of data very efficiently with the Block Group. This groups allows you to send whole arrays of data to and from the database. It works just like the Standard group, but on a much larger scale.

Stored Procedures
The Stored Procedure Group allows you to use PLC data as inputs and outputs for your existing Stored Procedures. With the Stored Procedure Group, your IT department can have control over how data is entered and returned from the database.
