Re: How can i cluster sql 2005 for load balancing?



Clusters are for high availability (HA) - not load balancing. You should
look at partitioned tables (SQL 2005) or partitioned views (SQL 2000). If
your queries always include the partitioning column in the WHERE clause, you
should be able to realize a performance benefit without necessarily going to
more servers. In the event that partitioned tables, or local partitioned
views, don't do it, then distributed partitioned views -0 where you do use
multiple servers - can be the solution.

--
Tom

----------------------------------------------------
Thomas A. Moreau, BSc, PhD, MCSE, MCDBA, MCITP, MCTS
SQL Server MVP
Toronto, ON Canada
..
"abssoft2000" <abssoft2000@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:0366D5B7-B160-417E-8037-5269258365FF@xxxxxxxxxxxxxxxx
i have a table with 10,000,000,000 records and i need Select and Insert many
records from or into this table in less than one second.
i can't buy a very expensive hardware(Server) for this SQL Server 2005
but i can buy many medium price hardwares(Servers) for this SQL Server
2005.
how can i distribute or cluster this table between many hardwares(Servers)?
note: i have few users (maximum 5 users) for my database but i have a
very large table and Sql server 2005 server need to respond to this
users in less than 1 second.
i want to distribute this huge table in seperated hardwares. becuase i
can't buy a very expensive hardware from my server but i can buy many
medium price hardware for my server.
note: i need this: when a user run a select query on this huge table
his/her request distribute between many hardwares not one hardware.

.



Relevant Pages

  • Re: SQL 2000 Load Balancing Question
    ... the upper limits of hardware are well beyond what any decently ... Microsoft SQL Server MVP. ... >> database, is not possible with SQL Server 2000. ...
    (microsoft.public.sqlserver.clustering)
  • Re: 32 bit SQL vs 64 bit
    ... As Geoff says the hardware upgrade is right time to move to 64 bit, ... fees for Windows as well as SQL Server 2005 moving from 32 to 64 bit. ... Geoff N. Hiten ... Microsoft SQL Server MVP ...
    (microsoft.public.sqlserver.setup)
  • Re: SQL Server 2000 Hardware
    ... SQL Server 2000 Standard Edition supports 2GB of RAM. ... RAID volume for your database files, a separate RAID volume for the log ... hardware to support clustering. ...
    (microsoft.public.sqlserver.setup)
  • Re: How can i cluster sql 2005 for load balancing?
    ... servers(include CPU,Ram,Disks) not one server. ... SQL Server MVP ... Table partitioning allows me to spread the load across disks. ... medium price hardware for my server. ...
    (microsoft.public.sqlserver.clustering)
  • Re: How can i cluster sql 2005 for load balancing?
    ... benchmark soon after going RTM with SQL Server 2000. ... Table partitioning allows me to spread the load across disks. ... medium price hardware for my server. ...
    (microsoft.public.sqlserver.clustering)

Loading