Complete the sentence to define sharding.
Sharding is a method of [1] a database into smaller, faster, and more manageable parts.
Sharding means splitting a large database into smaller parts called shards to improve performance and manageability.
Complete the sentence to explain partitioning.
Partitioning divides a database table into [1] parts based on certain criteria.Partitioning splits a table into logical parts, such as by date or region, to organize data efficiently.
Fix the error in the statement about sharding.
Sharding stores all data on a single server to improve speed by [1].Sharding distributes data across multiple servers, not stores it all on one server.
Fill both blanks to complete the sharding example.
A common sharding method is to divide data by [1] and store each shard on a separate [2].
Data is often sharded by region and stored on different servers to improve access and management.
Fill all three blanks to describe sharding benefits.
Sharding improves [1] by [2] data across servers and reduces [3] on each server.
Sharding improves performance by distributing data and reducing load on each server.
