About 6,900,000 results
Open links in new tab
  1. Using Table and Index Partitioning - SQL Server | Microsoft Learn

    Nov 22, 2024 · The feature enables index and table data to be spread across multiple file groups in partitions. A partition function defines how the rows of a table or index are mapped to a set …

  2. Options for Partitioned Tables and Indexes in SQL Server - SQL

    Jan 31, 2017 · When ALL is specified with partition number, this implies that the portion of the index that covers the rows in the partition must also reside in the same partition. Indexes like …

  3. SQL Server Partitioned Views - SQL Shack

    Nov 18, 2016 · SQL Server Partitioned Views enable you to logically split a huge amount of data that exist in large tables into smaller pieces of data ranges, based on specific column values, …

  4. Partitioned tables and indexes - SQL Server, Azure SQL Database, …

    Dec 19, 2023 · To partition an object, specify the partition scheme and partitioning column in the CREATE TABLE (Transact-SQL), ALTER TABLE (Transact-SQL), and CREATE INDEX …

  5. A Guide to SQL Server Indexes on Partitioned Tables

    Jan 13, 2025 · Here are the main facts and key concepts you need to know to understand this article on SQL Server indexes on partitioned tables: A partitioning function maps table or index …

  6. sql server - Partitioning Views in sql - Stack Overflow

    Mar 9, 2011 · Therefore, I would suggest that you partition your day_dim on the date_time column, and then create a partition-aligned indexed view to match this column. See this link …

  7. Indexing and Partitioning | DBA From The Cold

    Feb 21, 2018 · SQL needs the partitioning key to be explicitly defined in all unique indexes on partitioned tables. This is so that SQL can determine the uniqueness of that index by checking …

  8. Partitioned Views: A How-To Guide - Brent Ozar Unlimited®

    Sep 22, 2016 · With partitioned views, you add some flexibility in not needing to align all your indexes to the partitioning key, or alter all your partitions at once, but you also add some …

  9. Database table partitioning in SQL Server - SQL Shack

    Apr 4, 2014 · There are two different approaches we could use to accomplish table partitioning. The first is to create a new partitioned table and then simply copy the data from your existing …

  10. Handling Large SQL Server Tables with Data Partitioning

    Mar 15, 2007 · By using the DMV sys.dm_db_index_physical_stats we can get this information. Based on this results from sys.dm_db_index_physical_stats, you can rebuild an index for a …

Refresh