Data Governance (Test Qs) Flashcards

1
Q

Unity catalog simplifies managing multiple workspaces, by storing and managing permissions and ACL at _______ level

Workspace

Account

Storage

Data pane

Control pane

A

The answer is, Account Level

The classic access control list (tables, workspace, cluster) is at the workspace level, Unity catalog is at the account level and can manage all the workspaces in an Account.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which of the following section in the UI can be used to manage permissions and grants to tables?

User Settings

Admin UI

Workspace admin settings

User access control lists

Data Explorer

A

The answer is Data Explorer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which of the following is not a privilege in the Unity catalog?

SELECT

MODIFY

DELETE

CREATE TABLE

EXECUTE

A

The Answer is DELETE and UPDATE permissions do not exit, you have to use MODIFY which provides both Update and Delete permissions.

Please note: TABLE ACL privilege types are different from Unity Catalog privilege types, please read the question carefully.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A team member is leaving the team and he/she is currently the owner of the few tables, instead of transfering the ownership to a user you have decided to transfer the ownership to a group so in the future anyone in the group can manage the permissions rather than a single individual, which of the following commands help you accomplish this?

ALTER_TABLE table_name OWNER to ‘group’

TRANSFER OWNER table_name to ‘group’

GRANT OWNER table_name to ‘group’

ALTER OWNER ON table_name to ‘group’

GRANT OWNER On table_name to ‘group’

A

The answer is ALTER TABLE table_name OWNER to ‘group’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly