Home |
Previous Page | Next Page Managing Databases > Granting and Limiting Access to Your Database >
You can restrict access to data at the following levels:
- You can use the GRANT and REVOKE statements
to give or deny access to the database or to specific tables, and
you can control the kinds of uses that people can make of the database.
- You can use the CREATE PROCEDURE or CREATE FUNCTION statement to
write and compile a user-defined routine,
which controls and monitors the users who can read, modify, or create
database tables.
- You can use the CREATE VIEW statement
to prepare a restricted or modified view of the data. The restriction
can be vertical, which excludes certain columns, or horizontal,
which excludes certain rows, or both.
- You can combine GRANT and CREATE VIEW statements
to achieve precise control over the parts of a table that a user
can modify and with what data.
Home |
[ Top of Page | Previous Page | Next Page | Contents |
Index ]