MS Access - record level security

Brian

I have an MS Access database where all the users will be in the same group, except a few. I don't need to restrict certain objects from users. Instead, I need to give the current user write capabilities to his record and its related records only and read-only capabilities to all other records. Is this possible?

Albert D. Kallal

Unfortunately, be it Access, SQL server or Oracle, the restriction of rows to a single user is not built in. This means you have to build some type of interface in which you grab/use the users Logged on ID (their network pc id, or say prompt for a user + password). Then you when a form loads you have to restrict the records to that one given user. There are many ways to do this and they are all standard approaches to filtering or restricting data. However "YOU" have to build and write such code into the forms. You could perhaps base the form on a query with a expression (VBA or macro TempVars) that limits the records returned to the given user.

So you have to “cook” and “code” this ability for most any database. You thus also need to code to “save” the user name who created the record. This coding requirement as noted is required for most systems when looking to restrict data to single rows and such features are not generally built into the database system. You also likely need to restrict and prevent users from opening the database and seeing the table view.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

MS Access column-level security

From Dev

record level access in cakephp

From Dev

Inserting record to MS Access with PHP

From Dev

OrientDB - How To - Record Level Security with ODocument

From Dev

MS Access - Advancing through record groups

From Dev

Updating a record in MS Access is not working with SQL Syntax

From Dev

Ms access "invalid record set status" error

From Dev

Not allowed to create or change a record in MS Access

From Dev

MS Access - Linking to record through stored ID

From Dev

Updating a record in MS Access is not working with SQL Syntax

From Dev

VB.NET:Updating record in Ms Access

From Dev

Get unique record's in ms access query

From Dev

MS Access - Query Datapertaining to record count

From Dev

Add new record without deleting old record Ms Access Form

From Dev

MS-Access updating first record when adding record

From Dev

Spring Security ignoring access-denied-handler with Method Level Security

From Dev

How to implement user-level security in Access 2007

From Dev

How to implement user-level security in Access 2007

From Dev

Open MS Access form to new record, but able to edit previous records

From Dev

Checking if record matches another MS Access VBA/SQL

From Dev

VBA data type mismatch when blank record exists in MS Access

From Dev

How to use VBA to add new record in MS Access?

From Dev

MS-Access error: At most one record can be returned by this subquery

From Dev

MS Access 2007 Open Separate Form to Specific Record Using VBA

From Dev

MS Access check next related record to have an indicator popup in form?

From Dev

MS Access VBA - Using SELECT INTO to create a new table and add a record

From Dev

Event Driven Data Macro to Calculate Field in New Record - MS Access

From Dev

Can't insert record into MS Access through C# oledb

From Dev

How to get the last record from Ms Access table

Related Related

  1. 1

    MS Access column-level security

  2. 2

    record level access in cakephp

  3. 3

    Inserting record to MS Access with PHP

  4. 4

    OrientDB - How To - Record Level Security with ODocument

  5. 5

    MS Access - Advancing through record groups

  6. 6

    Updating a record in MS Access is not working with SQL Syntax

  7. 7

    Ms access "invalid record set status" error

  8. 8

    Not allowed to create or change a record in MS Access

  9. 9

    MS Access - Linking to record through stored ID

  10. 10

    Updating a record in MS Access is not working with SQL Syntax

  11. 11

    VB.NET:Updating record in Ms Access

  12. 12

    Get unique record's in ms access query

  13. 13

    MS Access - Query Datapertaining to record count

  14. 14

    Add new record without deleting old record Ms Access Form

  15. 15

    MS-Access updating first record when adding record

  16. 16

    Spring Security ignoring access-denied-handler with Method Level Security

  17. 17

    How to implement user-level security in Access 2007

  18. 18

    How to implement user-level security in Access 2007

  19. 19

    Open MS Access form to new record, but able to edit previous records

  20. 20

    Checking if record matches another MS Access VBA/SQL

  21. 21

    VBA data type mismatch when blank record exists in MS Access

  22. 22

    How to use VBA to add new record in MS Access?

  23. 23

    MS-Access error: At most one record can be returned by this subquery

  24. 24

    MS Access 2007 Open Separate Form to Specific Record Using VBA

  25. 25

    MS Access check next related record to have an indicator popup in form?

  26. 26

    MS Access VBA - Using SELECT INTO to create a new table and add a record

  27. 27

    Event Driven Data Macro to Calculate Field in New Record - MS Access

  28. 28

    Can't insert record into MS Access through C# oledb

  29. 29

    How to get the last record from Ms Access table

HotTag

Archive