Table clusters in SQLServer
Posted
by Bruno Martinez
on Stack Overflow
See other posts from Stack Overflow
or by Bruno Martinez
Published on 2010-05-28T20:56:56Z
Indexed on
2010/05/28
21:02 UTC
Read the original article
Hit count: 259
In Oracle, a table cluster is a group of tables that share common columns and store related data in the same blocks. When tables are clustered, a single data block can contain rows from multiple tables. For example, a block can store rows from both the employees and departments tables rather than from only a single table:
http://download.oracle.com/docs/cd/E11882_01/server.112/e10713/tablecls.htm#i25478
Can this be done in SQLServer?
© Stack Overflow or respective owner