Exam DP-700 Topic 3 Question 80 Discussion
Actual exam question for Microsoft's DP-700 exam
Question #: 80
Topic #: 3
Question #: 80
Topic #: 3
You have a Fabric workspace that contains an eventstream named EventStream1. EventStream1 outputs events to a table in a lakehouse.
You need to remove files that are older than seven days and are no longer in use.
Which command should you run?
You need to remove files that are older than seven days and are no longer in use.
Which command should you run?
Suggested Answer: A Vote an answer
VACUUM is used to clean up storage by removing files no longer in use by a Delta table. It removes old and unreferenced files from Delta tables. For example, to remove files older than 7 days:
VACUUM delta.`/path_to_table` RETAIN 7 HOURS;
VACUUM delta.`/path_to_table` RETAIN 7 HOURS;
by Haley at May 19, 2025, 01:00 PM
0
0
0
10
Comments
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.
Report Comment
Commenting
You can sign-up / login (it's free).