I have read many sites, guides, etc; also note I cannot test what I am asking as do not have two computers.
Table partitioning simply means that the table is logically divided, such that a particular range is handled by a particular partition only there by reducing load and also allowing parallelism.
there is a mention of partitions being on different hard disks but there is never any mention of partitions being on different computers.
Is that possible?
So for example, data with id<50000 will be stored on one computer and the remainder will be stored on the other?
partitioned functions introduced in SQL 2005 don’t support this AFAIK
it is possible when you create federated partitioned views, you have to use linked servers to do that
example on server 1
on server 2
on each server you would then have this view…however (and this is a big however) if one of the servers is down the the view will be unavailable on all servers
Also take a look at this link: Link