High Availability

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
A system is needed to track all changes made to a database, including who made the change, what was changed, and when the change was made.
About this solution: This solution is a good start, but it is missing some key details. For example, it does not mention how the system will handle concurrent changes or how it will deal with rollbacks. Additionally, the solution does not address how changes will be tracked if multiple users are making changes to the same database at the same time.
Nov 14
Databases / SQL DifficultyMedium SQL
This technical problem involves writing a SQL query to find the total number of orders placed by each customer, based on a table of customer order data.
About this solution: The candidate's solution is correct and demonstrates a good understanding of SQL. The solution is also efficient, as it uses the GROUP BY clause to group the orders by customer, and then uses the COUNT() function to count the number of orders for each customer.
Nov 13