While investigating a performance issue, you realized that you have too many small files for a given table, which command are you going to run to fix this issue
The latest changes and updates from the administration for this exam.
Latest Update: May 14 2026
All questions are working fine.
While investigating a performance issue, you realized that you have too many small files for a given table, which command are you going to run to fix this issue
Create a sales database using the DBFS location
'dbfs:/mnt/delta/databases/sales.db/'
What is the type of table created when you issue SQL DDL command CREATE TABLE sales (id int, units int)
How to determine if a table is a managed table vs external table?
Which of the below SQL commands creates a session scoped temporary view?
Drop the customers database and associated tables and data, all of the tables inside the database are managed tables. Which of the following SQL commands will help you accomplish this?
Define an external SQL table by connecting to a local instance of an SQLite database using JDBC
When defining external tables using formats CSV, JSON, TEXT, BINARY any query on the external tables caches the data and location for performance reasons, so within a given spark session any new files that may have arrived will not be available after the initial query. How can we address this limitation?
Which of the following table constraints that can be enforced on Delta lake tables are supported?
The data engineering team is looking to add a new column to the table, but the QA team would like to test the change before implementing in production, which of the below options allow you to quickly copy the table from Prod to the QA environment, modify and run the tests?