0
votes
What are some ways I can improve the performance of a regular expression query in Postgresql 8?
If you have a limited set of regexes to match against you could create a table with the primary key of your table and a field indicating if it matches that regex, which you would update on a trigge …
3
votes
Does a varchar field’s declared size have any impact in PostgreSQL?
TEXT /is/ the same as VARCHAR without an explicit length, the text
"The storage requirement for a short
string (up to 126 bytes) is 1 byte
plus the actual string, which …
