Please enable JavaScript.
Coggle requires JavaScript to display documents.
Data Base Security (Security (Encryption (involves the encoding of data to…
Data Base Security
-
Security Statements
-
CREATE ROLE Statement
CREATE/DROP ROLE
-
When a role is created, the DBMS grants the role to either the current user or current role
-
-
GRANT Statement
specify the privileges , the object (table, column, or view), and the list of authorized users (or roles).
-
-
-
-
-
-
-
GRANT SELECT ON projects TO ISPManager, ISAdministrator, ISEmployee;
GRANT UPDATE ON projects TO ISPManager, ISAdministrator;
GRANT ISPManager TO Blade, James;
GRANT ISAdministrator TO Blade WITH GRAND OPTION;
REVOKE Statement
To remove an access privilege, the REVOKE statement is used
-
-
The database include database-level access control, database-level authentification, and data storage encryption