I've heard on the grapevine that the forthcoming Access2010 has a Data Macros feature which will for the first time add trigger-like functionality to Access data engine tables. Does anybody have an further details on this? For example, can they created in code (ACEDAO, SQL DDL, etc)? Does the Data Macro run if the data is modified from outside of the Access user interface e.g. via ODBC, OLE DB, etc?

link|improve this question

Likely anyone who knows the answer is under NDA and can't confirm this. – David-W-Fenton Jul 22 '09 at 2:45
David, the NDA is being relaxed in some areas. – Tony Toews Jul 24 '09 at 0:28
feedback

2 Answers

up vote 5 down vote accepted

Ok, a bit more information.

Does the Data Macro run if the data is modified from outside of the Access user interface e.g. via ODBC, OLE DB, etc?

Yes it does.

These true triggers are at the data engine level. So, using ado, dao or even editing the tables in table view in ms-access means the triggers will fire. These triggers would also include the scenario where you don’t even have ms-access installed on your computer.

You will of course need JET installed (for the remainder of this article I will use the term ACE). Remember it was only in access 2007 that the access team received ownership of JET. They are now free to enhance this engine for their needs. We started to see some changes to ACE in 2007 and now we will see a LOT more changes for 2010. Some of these features are still NDA for me…but I will spill as much as I can here.

For example, can they created in code (ACEDAO, SQL DDL, etc)?

In code, perahps, but not with SQL ddl. The triggers are not sql commands. Keep in mind that for Oracle, or Sql server or MOST systems in the marketplace they all tend to have their OWN custom language for their triggers anyway.

In the new ACE you thus will write what is called a data macro. You use the macro editor in ms-access. These are old fashioned access macros, but the editor has been completely re-done. The new macros also have subroutines, looping, if then else blocks and a type of recordset. Remember, we received the ability to create temp variables in 2007 macros. In 2010 this is extended to also include local variables and above new features.

The syntax for existing macro commands is the same as previous versions. However, we have a new slick IDE along with all those above cool commands added. We now thus have two types of macros. UI macros (regular as before) and now the new so called data macros. It would not make sense for a table level macro to be able to display error messages to the screen. So any error logged goes into a table. There also a few new logging commands that let you write your own custom errors to that table . A brilliant and simple design here. Here what that error log table looks like:

alt text

In a world of huge IDE’s, massive frame works and horrifying huge libraries of code requited to update a simple row in a table, I can say that data macros are most refreshing feature. They feel much like how the original dbaseII works. They are very simple, but deadly power full because they run at the table level.

For example, here is a data macro that will maintain inventorying totals a table. In this example I’m going to assume that master inventory records exist. And then we have an order details table. If a user edits any value in the orders table, we want the master table to automatic update the inventory levels.

So we have: I have two tables

tblFruits:    main data fruit inventory table
id         (autonumber)
Fruit text
OnHand    (number value of fruit in inventory)

tblFruitsOrder
id       (autonumber)
Fruit_id (FK to tblFruts.ID)
QtyOrder (number of fruit to order)

This is simple test

So, we going to have a trigger in the tblFruitsOrder that will update + maintain inventory levels in tblFruits when the QtyOrder field is edited or modified.

Here is what the macro looks like:

alt text

Note how very simple the above is. Note that in the IDE if you click on a section of the code, then you get the old style macro type editing in which you can enter the values for the command (this is similar to pre 2010, but now the parameters and editing occurs in the code, not a panel that appears on the bottom of the screen in previous versions).

Here is another screen shot in which I playing with the ability to do a loop and call a subroutine.

alt text

In the above we can use msgboxs etc. because this is not a table level macro. So the commands available are automatically restricted for you when you writing a table level macro as opposed to a regular macro. The terminology we adopted to distinguish the two types of macros are UI macros and data macros.

The above is about all I can speak about in pubic. However there is few more REALLY neat-o features about these macros that I simply can not yet talk about in public as I am still under NDA on those features. But there is more cool surprises to come here.

Here is a screen shot of the types of table triggers we have:

alt text

link|improve this answer
Wow, thanks Albert. Great detail as usual. Exciting stuff! :) – onedaywhen Jul 22 '09 at 5:17
Something perhaps to test: you say they are table level but when are they checked: at the row level, the SQL statement level or the transaction level? One of the complaints I have about Jet 4.0 CHECK constraints is that, although they are table-level, they get checked at the row level. Consider a somewhat daft CHECK that tests that the table can only have exactly five rows. It is not checked when the table is empty obviously. Then you run an INSERT INTO..SELECT TOP 5.. style SQL statement to INSERT exactly 5 rows all at once... – onedaywhen Jul 22 '09 at 5:23
...HOWEVER the CHECK fires when the first row is created, obviously at this point there isn't five rows in the table, so the CHECK bites and the INSERT fails. This demonstrates that CHECK constraints are tested at the row level when they really should be tested at the SQL statement level at least, ideally at the transaction level (I'm thinking here of SQL-92's DEFERRABLE INITIALLY DEFERRED as seen in Oracle); as it is, there is enough loss of utility to consider this a bug, IMO. A Data Macro that similarly fired for each row of a bulk INSERT/UPDATE/DELETE could be a pain. – onedaywhen Jul 22 '09 at 5:32
These triggers will not change behavior of the check constraint (unfortantly). If the constraint does not allow the update then the trigger will not fire. You could create a table level validation macro but that’s not sql anymore. These new data macros don’t care nor know about those other issues. Anything that prevents a update means that the data macro will not fire. Validation macros or RI, or check constraints means No update = no trigger. Wrapping the above in a transaction would also not change anything here since all tables updated always rolled back if you bail out of the transaction. – Albert D. Kallal Jul 22 '09 at 5:50
Good point about the sequence of events (i.e. CHECK before Data Macro) but what I meant was the timing of the firing of the Data Macro when, for example, INSERTing five rows all at once using a INSERT INTO..SELECT TOP 5.. construct (or similar). Does the Data Macro fire five times i.e. once for each new row? This is what happens for a CHECK constraint which is a problem/bug. I'm not in a position to critique Data Macros (but all sounds good from here), just something you could test so any potential problem could fixed if identified early. Thanks. – onedaywhen Jul 23 '09 at 5:36
show 8 more comments
feedback

More information on this new feature was posted today on the MS Access development team's blog and it definitely provides more information on the crucial question raised in the comments above.

link|improve this answer
Beat me to it. Good update David. Seth – Seth Spearman Aug 14 '09 at 13:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.