Looking at Special Issues
Although the discussion of security so far has been quite thorough, a couple of issues surrounding the basics of security have not yet been covered. They include additional issues with passwords, understanding how security works with linked tables, understanding and working with object ownership, and printing security information. These topics are covered in this section.
Passwords
When you create a user, you do not assign a password to the user. You can assign passwords to a user only when that user has logged on to the system. The System Administrator cannot add or modify a user's password (the exception to this is when using the Security Wizard). It is important to encourage users to assign themselves a password the first time they log on to the system. Using VBA code, the users can be forced to assign themselves a password. This is covered in Chapter 28. Alternatively, the administrator of the database can log on as each user, assigning each a password.Although you cannot assign a password to a user or modify the user's password, you can remove a user's password. This is necessary when a user forgets his or her password. To clear a user's password, follow these steps:
Security and Linked Tables
When you design your application with two databases (one for tables and the other for the remainder of the application objects), it is necessary for you to secure both databases. Securing only the linked tables is not sufficient!Chapter 28.
Ownership
Remember that the user who creates the database is the database's owner. This user retains irrevocable rights to the database. You cannot change the owner of a database; you can change only the ownership of objects in the database. There is a workaround that allows you, in effect, to change the owner of the database. If you have rights to the database's objects, you can create a new database and import all the objects from the other database. You can accomplish this by using the Security Wizard.By default, the creator of each object in the database is its owner. To change the ownership of an object in the database, follow these steps:
Figure 27.28. The Change Owner tab allows you to change an object's ownership.

Printing Security
You can print a list of each user and the groups she is a member of by following these steps:
Figure 27.29. The Print Security dialog box allows you to print a list of each user and the groups she is a member of.

Chapter 29, "Documenting Your Application."