About 1,080,000 results
Open links in new tab
  1. sql - What is table partitioning? - Stack Overflow

    Nov 30, 2009 · 0 Table partitioning consist in a technique adopted by some database management systems to deal with large databases. Instead of a single table storage location, …

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

    2 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 …

  3. sql server - How does one Remove a Partition from a Table

    Apr 18, 2019 · DECLARE @partitionsTable dbo.NVarCharCollectionTableType --User-defined table type to hold a collection of NVarChars. INSERT INTO @partitionsTable SELECT …

  4. SQL Server Automatic Partitioning of Large Database Tables

    Jul 22, 2010 · Can you back that up? According to MSDN, SQL Server's table partitioning is designed to make [maintenance operations] on large tables easier, as well as improve …

  5. 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). For …

  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 server - Altering/Editing an already partitioned table - Stack …

    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 …

  8. sql - What is the difference between partitioning and indexing in …

    Mar 25, 2021 · Partitioning also makes backup / restoration / archiving / data deletion easier since you can do things like drop an old partition, which takes a very minimal amount of resources …

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

  10. Find Partition Schema Definitions in SQL Server Database

    Jul 22, 2014 · I have access to a database and I need to know the Partition Scheme definitions in the database. i.e. I need to know the partition scheme name, which Partition function is it …