How to count hits on a website - concurrent counting in PostgreSQL
How to grant users access to a certain piece of data a limited number of times. What happens if two users access it concurrently?
PostgreSQL: Network latency does make a BIG difference
Find out about how network latency is essential to PostgreSQL database performance. Measure the performance impact caused by latency.
PostgreSQL: now() vs. 'NOW'::timestamp vs. clock_timestamp()
How to use the PostgreSQL: now() vs. 'NOW'::timestamp vs. clock_timestamp() | Issues with time and date in PostgreSQL database applications
Speeding up count(*): Why not use max(id) - min(id)
The usage of max(id) - min(id) to speed up count(*) may seem like a good approach when it comes to speeding up the process, but it can be problematic.
pg_show_plans: Watching execution plans in PostgreSQL LIVE
pg_show_plans is an extension developed by CYBERTEC, which shows all active query plans in PostgreSQL | Execution plan live in PostgreSQL
CLUSTER: Improving PostgreSQL performance
Learn an important trick to lower the performance impact of data storage methods in your PostgreSQL database. Use CLUSTER to improve speed.
Reduce WAL by increasing checkpoint distance
Adjusting checkpoints is useful when tuning a server and improves the database performance. Furthermore, it helps to reduce WAL.
shared_buffers: Looking into the PostgreSQL I/O cache
shared_buffers: What does the PostgreSQL I/O cache contain? Find out what the cache knows about your database.
Migrating from MS SQL to PostgreSQL: Uppercase vs. Lowercase
How to: MS SQL PostgreSQL Migration. What you should do and how you can do it easily. Read more in this blog...
pg_timetable: Advanced PostgreSQL scheduling
How to get the best PostgreSQL job scheduling: pg_timetable provides better job execution in than other schedulers. Read the details.