93630
Goto Top

SELECTIVITY bei Datenbanken?

Hallo,

ich muss eine H2 DB in eine Postgres DB überführen. Einige H2 Columns haben die Eigenschaft "SELECTIVITY". Kann mir jemand erklären was diese Eigenschaft überhaupt tut und ob es dazu ein equivalent in Postgres gibt?

Content-Key: 323702

Url: https://administrator.de/contentid/323702

Printed on: April 19, 2024 at 07:04 o'clock

Mitglied: 131381
131381 Dec 15, 2016 updated at 12:18:01 (UTC)
Goto Top
The selectivity describes the 'uniqueness' of values in a column. A selectivity of 100 means each value appears only once, and a selectivity of 1 means the same value appears in many or most rows.   
http://www.h2database.com/html/performance.html

http://www.h2database.com/html/functions.html#selectivity

Gruß