Powerful, versatile, dangerous.
When I use Microsoft Access I backup my data files very frequently and I set every linked Access data file I'm not actively editing to 'read only' status to protect it (Access table security model ranks high in its sins).
So, lots of bad news. But one insanity stands out above all the rest.
Access has a compulsion to break queries when you use linked files. This is one of those mult-ipart design problems:
- The crummy security models and lousy organizational tools means that serious work requires lots of linkages to remote ODBC and Access data sources. (This ability to link across diverse data sources is actually a great power of Access, it extends to Sharepoint's SQL Server tables.)
- Links to local sources use hard coded paths.
- When a hard coded path changes, or a referenced table name changes, a trap has been set. The first time one opens a query referencing the link to the changed item, the query breaks. Joins vanish. Column names get odd prefixes. There's no warning and no protection.
- Use the drive letter substitution trick to reduce the hard coded path problem.
- Wrap linked tables in a simple query that you can validate first, then have all other queries reference these "wrapper" queries. It's easy to fix the wrappers, and you don't break all the other queries.
There, I feel better now.
1 comment:
Maybe try FileMaker
Post a Comment