Results 1 to 7 of 7

Thread: Partion Tables

  1. #1
    Join Date
    Oct 2008
    Posts
    5

    Partion Tables

    Hi ,

    I want to implement partition tables in my production Database to improve performance of the query as well application.

    can any one help me how to do partition for every quarterly....
    example for one table how to do partition..

    Thanks,
    Thulasi

  2. #2
    Join Date
    Sep 2002
    Posts
    5,938
    Books online has details. How big the table is by the way?

  3. #3
    Join Date
    Oct 2008
    Posts
    3
    use "job agent".

  4. #4
    Join Date
    Sep 2002
    Posts
    5,938
    Don't think job agent is related in this case.

  5. #5
    Join Date
    Oct 2008
    Posts
    1
    Be careful partitioning for "performance". Partitioning in SQL Server improves primarily manageability. You can backup/restore individual partitions, rebuild index on a single partition, run DBCC against single partition. Therefore rmiao's question on the table size is fully in place. Only large tables (millins of rows, tens of GB's) are good targets for table partitioning.

  6. #6
    Join Date
    Oct 2008
    Posts
    5

    partition Tables

    Hi all,

    I am implementing partition tables in my Database environment on Year range partition function.

    i have a primary key on CustomerId.
    But i want to implement Datecreated coulmn in this case how can apply partition scheme on datecreated.

    Is that necessary that date created column should be a Primary key.

    if any one help on this it would be highly appriciated.

    Thanks,
    Thulasi

  7. #7
    Join Date
    Sep 2002
    Posts
    5,938
    Not necessary pkey, better better to put clustered index on partitioned key column.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •