CA 33 - Users, Roles, Groups
Task 1 : Create a login role report_user that can only read from the film table. Step 1 :- We should first create a role named report_user with Login access along side a password So now a Role 'report_User' has been created with login access and password as 'report_user123' Step 2 :- The role should be now able to access the database 'dvdrental' inorder to perform select query in film table Step3 :- Now the role should be only able to perform select operation on the film table this we only grant the select access to this role Task 2: Now try to access customer table. When report_user tries to query customer and gets permission denied. Fix it. In order to access the customer table first we will login as the report_user. To avoid this problem also mention the db in which you can connect. Now that we are connected let us t...