Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Indexes and Performance Tradeoffs

MediumSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Indexes and Performance Tradeoffs. Start with the requirements and the one table on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

What are indexes, and how do they impact write performance versus read performance in a database used for clinical data at Medpace?

For the hands-on portion, use the supplied index statistics to classify indexes according to their observed read activity and write-maintenance operations.

Output

  1. One row per index on clinical_records
  2. Return index_name, read_hit_ratio, maintenance_operations, and performance_assessment
  3. Sort by performance_assessment priority, then index_name alphabetically

Schema

index_usage_stats
ColumnTypeDescription
index_namePKVARCHAR(100)Name of the database index
table_nameVARCHAR(100)Table associated with the index
idx_scanBIGINTNumber of index scans
idx_tup_readBIGINTIndex entries returned by scans
idx_tup_fetchBIGINTTable rows fetched through the index
insertsBIGINTRows inserted during the observation period
updatesBIGINTRows updated during the observation period
deletesBIGINTRows deleted during the observation period
Tablesindex_usage_stats
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results