Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Administration (2000)
 Table Partition and Name Search

Author  Topic 

scelamko
Constraint Violating Yak Guru

309 Posts

Posted - 2008-02-23 : 16:20:48
Guys,

I am trying to make store all possible names from our clients in the database. The name search utility will run against this database.

Is there any to partition the table across a disk in such a way that for names with Last Name starting from A to G is in disk M, H to M in disk N so on. And have index on the table partitions.

Is this the effective to support 12 million distinct names in name search?

Any suggestions about pros and cons of table partition and effective ways to index table partition would be helpful

Thanks

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-02-23 : 17:37:33
Table partition is supported only on SQL server 2005 enterprise edition.Not in SQL 2000. Yes you can with Lastname column partition.
Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2008-02-24 : 13:07:38
Well you wouldn't want partitioned tables anyway as that's for historical/current data. What you want is partitioned views, which is available in SQL Server 2000 but perhaps only in enterprise.

12 million rows in a table is nothing. You don't need to partition yet.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/
Go to Top of Page
   

- Advertisement -