About 149,000 results
Open links in new tab
  1. Create partitioned tables and indexes - SQL Server, Azure SQL Database ...

    Creating a partitioned table requires CREATE TABLE permission in the database and ALTER permission on the schema in which the table is being created. Creating a partitioned index requires …

  2. Partition (database) - Wikipedia

    Database partitioning refers to intentionally breaking a large database into smaller ones for scalability purposes, distinct from network partitions which are a type of network fault between nodes. [1]

  3. Database table partitioning in SQL Server

    Apr 4, 2014 · Partitioning is the database process where very large tables are divided into multiple smaller parts. By splitting a large table into smaller, individual tables, queries that access only a …

  4. Data Partitioning Techniques in System Design - GeeksforGeeks

    Sep 28, 2025 · It can be accomplished by either vertical partitioning, which separates data into columns, or horizontal partitioning, which divides data into rows according to particular criteria.

  5. What Is Data Partitioning? A Complete Guide for Beginners

    May 10, 2025 · What Is Data Partitioning? A Complete Guide for Beginners This guide explains data partitioning in simple terms, covering types, use cases, tools, and implementation strategies to help …

  6. PostgreSQL: Documentation: 18: 5.12. Table Partitioning

    Nov 13, 2025 · Each partition stores a subset of the data as defined by its partition bounds. All rows inserted into a partitioned table will be routed to the appropriate one of the partitions based on the …

  7. Partitioning Concepts - Oracle Help Center

    2.1 Partitioning Overview Partitioning provides a technique to subdivide objects into smaller pieces. Partitioning allows a table, index, or index-organized table to be subdivided into smaller pieces, …

  8. What is data partitioning, and how to do it right - CockroachDB

    Feb 7, 2023 · Database partitioning (also called data partitioning) refers to breaking the data in an application’s database into separate pieces, or partitions. These partitions can then be stored, …

  9. Data Partitioning: What It Is and Why It Matters | Tiger Data

    Jul 31, 2023 · There are several ways to partition a database, including horizontal partitioning, vertical partitioning, and hybrid partitioning. Horizontal partitioning involves dividing the data based on rows, …

  10. Mastering Database Partitioning: A Comprehensive Guide to

    Apr 30, 2024 · This article provides a comprehensive guide to database partitioning, a technique that divides a large database into smaller parts to improve efficiency and performance. It covers the …