Backup and Recovery

Categories: Code Problem / Data Structures and Algorithms / Recursion (32) Code Problem / Data Structures and Algorithms / Binary Search (30) Code Problem / Data Structures and Algorithms / Linked Lists (26) Code Problem / Data Structures and Algorithms / Backtracking (26) Code Problem / Data Structures and Algorithms / Stacks and Queues (25) Code Problem / Data Structures and Algorithms / Hashing (24) Databases / SQL / Backup and Recovery (19) Code Problem / Data Structures and Algorithms / Arrays and Strings (19) Databases / SQL / Database Normalization (18) Code Problem / Data Structures and Algorithms / Time Complexity (17) Databases / SQL / Locking (16) Databases / SQL / Replication (15) Databases / SQL / SQL Queries (13) Code Problem / Data Structures and Algorithms / Graphs (13) Databases / SQL / Database Security (13)  More...

Recent solutions:

Check these solutions from our community:
Databases / SQL DifficultyMedium SQL
The number of customers who have placed an order in the last 30 days can be found by querying the orders table and counting the number of customer_id entries where the order_date is within the last 30 days.
About this solution: The candidate's solution is correct and demonstrates a good understanding of how to use the DATE_SUB function to get the date 30 days ago. The candidate's solution is also efficient because it uses the WHERE clause to filter the results.
Nov 04
Databases / SQL DifficultyMedium SQL
The number of customers who have placed an order in the last 30 days can be found by querying the orders table and counting the number of customer_id entries where the order_date is within the last 30 days.
About this solution: The candidate's solution is correct and demonstrates a good understanding of how to use the DATE_SUB function to get the date 30 days ago. The candidate's solution is also efficient because it uses the WHERE clause to filter the results.
Nov 04
Databases / SQL DifficultyMedium SQL
Write a SQL query to find the most recent backup of each database on a server.
About this solution: The candidate's solution does not demonstrate a level of completeness and does not solve the problem. The general approach is not clear.
Nov 02