Hi,
We have most of our data (millions of rows) stored in two tables "row" and "value", linked with an syntetic foreign key. There are many values/columns on each row (1-20)
A value is always accessed from a row (not by itself), and a row is never accessed without at least one value.
Is there a way in SQL server Std Ed. to store the values fysically close to its corresponding row to increase reading performance ?
/Jerome K
"Row"
TransDate
Id1
Id2
...
RowPk PK
"Value"
RowPk PK FK
ColNo PK
Value
Jerome K