Certified Data Engineer Associate Exam QuestionsBrowse all questions from this exam

Certified Data Engineer Associate Exam - Question 90


A new data engineering team team has been assigned to an ELT project. The new data engineering team will need full privileges on the table sales to fully manage the project.

Which of the following commands can be used to grant full permissions on the database to the new data engineering team?

Show Answer
Correct Answer: A

The correct command to grant full privileges on the table 'sales' to the new data engineering team is 'GRANT ALL PRIVILEGES ON TABLE sales TO team;'. This command provides complete control over the specified table, covering all necessary permissions for the team to fully manage the project.

Discussion

4 comments
Sign in to comment
meow_akkOption: A
Oct 22, 2023

Ans A :  grant "privilege" on "object" object_name to <user or group>

LavpakOption: A
Dec 8, 2023

GRANT ALL grants all privileges on "Sales" Table

azure_bimonsterOption: A
Jan 20, 2024

A is correct as provided syntax is right

hussamAlHunaitiOption: A
Jun 9, 2024

Correct answer A.