Data Engineering on Microsoft Azure — Question 105
You have an Azure subscription that contains a Microsoft Purview account.
You need to search the Microsoft Purview Data Catalog to identify assets that have an assetType property of Table or View.
Which query should you run?
Answer options
- A. assetType IN ('Table', 'View')
- B. assetType:Table OR assetType:view
- C. assetType = (Table OR View)
- D. assetType:(Table OR View)
Correct answer: B
Explanation
The correct answer is B, as it uses the correct syntax for querying in Microsoft Purview, combining the assetType with a logical OR. Option A uses an incorrect syntax for the query, while C misuses the equal sign with parentheses, and D lacks the proper logical operator for the query context.