Slow attribute management

From GRASS-Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Q: In SQlite (or PostgreSQL or MySQL or ...) it seems that the vector attribute management is pretty slow. What can I do?

A: Generate an index on the column in question:

SQLite syntax example:

CREATE INDEX idx_table1_key ON table1(key);