Database-level Roles
Database roles work the same as server roles, except that they allow you to assign database-level permissions instead of server-level permissions.
To create a database role, use the same procedure detailed above for server roles. For example, you might use the following commands:CREATE ROLE dbrole GRANT SELECT ON DATABASE::TestDatabase TO dbrole ALTER ROLE dbrole ADD MEMBER exampleuser2
Securables
Principals receive permissions to securables. Securables are the resources for which access is regulated. Securables can have nested hierarchies, called “scopes,” which also can be secured. The securable scopes are server, database and schema. (A database schema is a skeletal structure that represents a logical view of an entire database. It defines how data is organized and how the relationships between them are related. It spells out all the constraints that must be applied to the data.)
More Info: what kind of jobs can you get with comptia a+ certification
To create a database role, use the same procedure detailed above for server roles. For example, you might use the following commands:CREATE ROLE dbrole GRANT SELECT ON DATABASE::TestDatabase TO dbrole ALTER ROLE dbrole ADD MEMBER exampleuser2
Securables
Principals receive permissions to securables. Securables are the resources for which access is regulated. Securables can have nested hierarchies, called “scopes,” which also can be secured. The securable scopes are server, database and schema. (A database schema is a skeletal structure that represents a logical view of an entire database. It defines how data is organized and how the relationships between them are related. It spells out all the constraints that must be applied to the data.)
More Info: what kind of jobs can you get with comptia a+ certification
Comments
Post a Comment