Data abstraction has been achieved in Oracle by separating the client and the server side logic. Therefore the client applications cannot manipulate the data. The triggers perform content based auditing and selectively disable application updates.
Access control can be achieved in Oracle by allowing the users to manipulate the data by using only their definer’s permitted previledges.
What are roles? How can we implement roles?
Roles in oracle restrict access to the different database objects. They are most useful when there are many database users. Once a role is created it can be granted to a user.
Example:
Create a role:-
Create role select_data;
Grant select on student. Employee, salary to select_data
Grant to a user:
Grant select_data TO John;
Revoke a role:-
Revoke select_date FROM John;
What is user Account in Oracle database?
A user account is given to a user for accessing the database. This user account is used to manage the database. Each account is also given privileges in order to restrict access
本文介绍了Oracle数据库中如何通过角色和用户账户实现数据抽象与访问控制。详细解释了角色的创建、授权与撤销流程,并说明了用户账户的概念及其在数据库管理中的作用。
1万+

被折叠的 条评论
为什么被折叠?



