Josh McFarlane
darsant at gmail.com
Thu Jul 7 14:12:18 CDT 2005
On 7/7/05, Joe Rojas <JRojas at tnco-inc.com> wrote: > Hi All, > > 2 of the Access 2000 database systems that we use here are currently being > reviewed to determine if they need to be compliant to the FDA regulation 21 > CFR Part 11 (Electronic Records; Electronic Signatures). > My prediction is that the answer will be yes. > > With that said, I need to find a way to incorporate e-signatures and audit > trails into our systems. > I would hate to reinvent the wheel if someone has already tackled this > problem and is willing to share. :) > > Does anyone have a solution for this that I could incorporate into our > existing system that they would be will to share/sell? > Or does anyone know of a site that shares/sells this kind of solution? > > Thanks! > JR Depends on how you want to do it, and how picky they are. We set up a generic table with timestamp and a few other fields, then made a function that could be put before any common database updates (order processing, payments, etc) that added a record to the transaction table via the function. We made a more specialized one for inventory tracking and billing changes. Only downside is you've got to add it anywhere you touch the data you want to track. It's not the most secure thing, as someone could still go into the audit table and mess with the entries, but it helped us when we had something die on the code side and had to reconstruct the previous data. -- Josh McFarlane "Peace cannot be kept by force. It can only be achieved by understanding." -Albert Einstein