0

How can I restrict the access of a table just for one specific db user in MS Access by SQL DDL statemets?

The Bitman
  • 1,279
  • 1
  • 11
  • 25

1 Answers1

1

Use Grant and Revoke statements

REVOKE {privilege[, privilege, …]} ON {TABLE table | OBJECT object|

CONTAINTER container} FROM {authorizationname[, authorizationname, …]}

Syntax

GRANT {privilege[, privilege, …]} ON {TABLE table | OBJECT object|

CONTAINER container } TO {authorizationname[, authorizationname, …]}

see more: https://msdn.microsoft.com/en-us/library/bb177904%28v=office.12%29.aspx

Alec
  • 569
  • 2
  • 17
  • 27