Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam Certified Data Engineer Associate All Questions

View all questions & answers for the Certified Data Engineer Associate exam

Exam Certified Data Engineer Associate topic 1 question 44 discussion

Actual exam question from Databricks's Certified Data Engineer Associate
Question #: 44
Topic #: 1
[All Certified Data Engineer Associate Questions]

A new data engineering team team. has been assigned to an ELT project. The new data engineering team will need full privileges on the database customers 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?

  • A. GRANT USAGE ON DATABASE customers TO team;
  • B. GRANT ALL PRIVILEGES ON DATABASE team TO customers;
  • C. GRANT SELECT PRIVILEGES ON DATABASE customers TO teams;
  • D. GRANT SELECT CREATE MODIFY USAGE PRIVILEGES ON DATABASE customers TO team;
  • E. GRANT ALL PRIVILEGES ON DATABASE customers TO team;
Show Suggested Answer Hide Answer
Suggested Answer: E 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
806e7d2
2 days, 22 hours ago
Selected Answer: E
To grant full privileges on a database in SQL, you would use the GRANT ALL PRIVILEGES command, which gives the specified user or group all available permissions on the database. This typically includes the ability to select, insert, update, delete, and modify the structure of the database (such as creating and dropping tables). In this case, the command: sql Copy code GRANT ALL PRIVILEGES ON DATABASE customers TO team; gives the team full control over the customers database, which is what is needed for them to manage the ELT project.
upvoted 1 times
...
benni_ale
6 months, 3 weeks ago
Selected Answer: E
e is correct
upvoted 1 times
...
Viju_1
8 months, 1 week ago
Examtopics not showing all the questions and asking for contributor access. I can only see qestions till 44. Anyone is able to see all 99 questions??????
upvoted 1 times
akshirao
8 months, 1 week ago
i think the 99 questions have been relabelled as Q1-44 then Q1-45
upvoted 1 times
...
...
Skidmee
10 months, 1 week ago
E is correct
upvoted 1 times
...
csd
10 months, 4 weeks ago
E is correct Template to give access--> GRANT Privilege ON Object <object-name> TO <user or group> ALL PRIVILEGES = gives all privilege
upvoted 4 times
...
awofalus
1 year ago
Selected Answer: E
E is correct
upvoted 2 times
...
DavidRou
1 year ago
Selected Answer: D
Right answer is E. The template to respect is the following: GRANT <privilege> ON <resource> TO <user/group>
upvoted 2 times
...
vctrhugo
1 year, 2 months ago
Selected Answer: E
E. GRANT ALL PRIVILEGES ON DATABASE customers TO team; To grant full privileges on the database "customers" to the new data engineering team, you can use the GRANT ALL PRIVILEGES command as shown in option E. This command provides the team with all possible privileges on the specified database, allowing them to fully manage it. Option A is not correct because it grants only the USAGE privilege, which is not sufficient for full management. Option B has the syntax reversed, and it is attempting to grant privileges on the "team" database to the "customers" database, which is not the desired action. Option C contains incorrect syntax and should use "team" instead of "teams." Option D has incorrect syntax and is not a valid SQL command for granting privileges in most database management systems.
upvoted 2 times
...
Atnafu
1 year, 4 months ago
E GRANT ALL PRIVILEGES ON DATABASE customers TO team;
upvoted 1 times
...
rafahb
1 year, 7 months ago
Selected Answer: E
Option E
upvoted 2 times
...
XiltroX
1 year, 7 months ago
Selected Answer: E
Correct answer is E. Please take note of how the questions are worded to avoid confusion and not make the wrong choice.
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...