A solutions architect is evaluating whether to register new production Delta Lake tables as Unity Catalog managed tables or external tables. The architect wants to take full advantage of platform-managed performance optimizations and operational simplifications. Which combination of features is EXCLUSIVELY available to Unity Catalog managed tables and NOT available for external tables?
Show answer & explanation
Correct answer: E
WHY E: The Databricks documentation explicitly lists features unique to Unity Catalog managed tables: (1) Predictive optimization — automatically runs OPTIMIZE, VACUUM, and ANALYZE; must be manually scheduled for external tables. (2) Automatic liquid clustering — intelligently selects clustering keys based on workload patterns, enabled via predictive optimization; not available for external tables. (3) Metadata caching — in-memory caching of Delta transaction metadata to reduce cloud storage requests; always enabled for managed tables. (4) Automatic file deletion after DROP TABLE — managed tables delete underlying cloud storage files after 8 days; external tables require manual storage cleanup. WHY NOT A: ACID transactions, time travel, and schema enforcement are Delta Lake features available to both managed and external Delta tables — not exclusive to managed tables. WHY NOT C: Delta Sharing and credential vending work with both managed and external tables through Unity Catalog; they are not managed-table-exclusive. WHY NOT D: Automatic liquid clustering (with predictive optimization) is exclusive to managed tables — external tables cannot benefit from automatic clustering key selection. WHY NOT B: Unity Catalog access controls, row/column security, and auditing apply to all tables registered in Unity Catalog, including external tables — they are not exclusive to managed tables.