in reply to Re^9: Architecture design for full stack development.
in thread Architecture design for full stack development.
In other words you make the table CLUSTER ON <index-name> rather than making the index clustered at index creating time like you do in most other DBMS's, whereas as I said before, the CLUSTER sql command doesn't do that at all - it only works per use without persistence.
So yes, Postgres DOES have clustered indexes, it's just that the documentation isn't as clear as it could be and the syntax is a bit different from other popular DBMS's.
Update: it doesn;t work as expected. The table will have to have CLUSTER applied periodically although it does have a clustered index in the sense of what happens with CLUSTER table (as opposed to CLUSTER index). So that is yet another problem for me to address after all. And you were right that PgAdmin led me to believe it had clustered indexes just like Sybase - it looked that way in terms of how the interface works.
One world, one people
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^11: Architecture design for full stack development.
by erix (Prior) on Jun 25, 2017 at 06:30 UTC | |
by anonymized user 468275 (Curate) on Jun 25, 2017 at 06:55 UTC | |
by erix (Prior) on Jun 25, 2017 at 08:43 UTC |