About 1,010,000 results
Open links in new tab
  1. sql - How to Partition a Table by Month ("Both" YEAR & MONTH) and ...

    Aug 11, 2015 · I'm trying to Partition a Table by both Year and Month. The Column through which I'll partition is a datetime type column with an ISO Format ('20150110', 20150202', etc).

  2. What is the best way to partition large tables in SQL Server?

    Which version of SQL Server are you using? SQL Server 2005 has partitioned tables, but in 2000 (or 7.0) you needed to use partition views. Also, what was the reasoning for putting the table partitions in …

  3. SQL Server Automatic Partitioning of Large Database Tables

    Jul 22, 2010 · This is a very old question so some updated information is probably in order. First of all, to answer the original question, yes, dynamic partitioning is possible by way of scheduled jobs: Marlon …

  4. How to partition a Azure SQL server table and repartition automatically ...

    Jun 13, 2023 · While learning about Azure SQL server, while learning about partitioning, I saw that partitioning SQL Server table is very different from other like in Bigquery or in Oracle. Can anyone …

  5. SQL Server - Partitioned Tables vs. Clustered Index?

    Nov 7, 2011 · Also create a "sliding window" partitioning function / scheme on date allowing rapid movement of new data in / out of the table. Potentially create a non-clustered index on id to help with …

  6. sql server - Table partitioning using 2 columns - Stack Overflow

    Is it possible to partition a table using 2 columns instead of only 1 for the partition function? Consider a table with 3 columns ID (int, primary key, Date (datetime), Num (int) I ...

  7. sql - What is table partitioning? - Stack Overflow

    Nov 30, 2009 · 26 Partitioning enables tables and indexes or index-organized tables to be subdivided into smaller manageable pieces and these each small piece is called a "partition".

  8. sql server automated daily table partitioning - Stack Overflow

    Mar 18, 2019 · This uses a similarly partitioned staging table for the purge since you are using SQL Server 2005 and partition-level TRUNCATE was introduced in SQL Server 2016. Note that SQL …

  9. Disadvantages of table partitioning (e.g. SQL Server)

    Feb 27, 2018 · The SQL to do so is not hard and you can arrange to backup individual partitions. But partitioning in SQL Server is only available on Enterprise Edition and partitioned tables cannot be …

  10. sql server - Altering/Editing an already partitioned table - Stack Overflow

    Jan 14, 2023 · What steps to take to add additional partitions to the end of an already partitioned table in SQL Server? Partitioned tables are built on partition schemes which themselves are built on partition …