You've got the main reason to secure the tables and grant WITH OWNERACCESS
OPTION to users. In fact, users should never be permitted direct access to
the tables even if they need access to every field. Use a datasheet form, at
the very least, instead. The reasons are:
1. Security - you never see any database admin open the tables in any other
RDBMS.
2. Data integrity - Since Access has no triggers and thus only limited
enforcement of rules at the table level, users must go through forms to
ensure data integrity. With query based forms, Access has even more control
than almost any other RDBMS, because of VBA which can be used both in
queries and in forms.

Signature
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
> Hi,
>
[quoted text clipped - 10 lines]
> Thanks
> Ramesh
Ramesh - 31 Mar 2007 11:09 GMT
Thanks Arvin.
Ramesh
> You've got the main reason to secure the tables and grant WITH OWNERACCESS
> OPTION to users. In fact, users should never be permitted direct access to
[quoted text clipped - 23 lines]
>> Thanks
>> Ramesh