Certified Data Engineer Professional Exam QuestionsBrowse all questions from this exam

Certified Data Engineer Professional Exam - Question 43


The data governance team has instituted a requirement that all tables containing Personal Identifiable Information (PH) must be clearly annotated. This includes adding column comments, table comments, and setting the custom table property "contains_pii" = true.

The following SQL DDL statement is executed to create a new table:

Which command allows manual confirmation that these three requirements have been met?

Show Answer
Correct Answer: A

The correct command to manually confirm that all three requirements have been met, including column comments, table comments, and the custom table property, is 'DESCRIBE EXTENDED dev.pii_test' as it provides a detailed description of the table including all its properties and comments.

Discussion

2 comments
Sign in to comment
rok21Option: A
Dec 9, 2023

correct A !

lexaneonOption: A
Jan 2, 2024

looks like A & C are correct.. https://docs.databricks.com/en/sql/language-manual/sql-ref-syntax-aux-show-tblproperties.html#show-tblproperties

lexaneon
Jan 2, 2024

if we want to see also columns comments then A