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

    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. sql server - How does one Remove a Partition from a Table

    Apr 18, 2019 · Update: I was able to use the following hack to get the Partition removed from my table but I still can't drop the Partition Scheme or Function. --HACK: Dummy Index to …

  3. SQL Server Automatic Partitioning of Large Database Tables

    Jul 22, 2010 · Queries that opt to look up only one partition do so solely based on the index ranges, and would scan exactly the same number of records with or without partitioning. the …

  4. 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 …

  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 …

  6. sql server - Undo Table Partitioning - Stack Overflow

    Oct 20, 2015 · All the above, using SQL Management Studio "generate scripts" upon right click. And choose drop and create. Now, when everything is ready. 1. Drop the publication (use the …

  7. sql - What is a good size (# of rows) to partition a table to really ...

    Jul 31, 2011 · The absolute number of rows in a partition is not the most useful metric. What you really want is a column which is stable as the table grows, and which delivers on the potential …

  8. 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 …

  9. 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".

  10. sql server - Table Partitioning to avoid locks - Stack Overflow

    Jan 5, 2022 · Created 16 SQL Server filegroups for the table in Added a file to each filegroup Partitioned the table on the plan column (the boundary for each filegroup is the name of one …