1

How can I set a password for an Access Database file, so that no user can recover this password.

fixer1234
  • 28,064

1 Answers1

3

There are utilities to break this security: http://www.snapfiles.com/get/dbpwsniffer.html

So I wouldn't trust an access password to protect your data.

We store the data in SQL server and use SQL Native encryption which relies on NTFS authentication to decrypt.

Sam
  • 477