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

Ausgedruckt am: 19.03.2024 um 08:03 Uhr

Mitglied: 131381
131381 15.12.2016 aktualisiert um 13:18:01 Uhr
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ß