Tag: Open Source

Community

Creating Virtual Columns

(Bruce Momjian) Databases store data in table columns, but sometimes it is useful to create non-storage columns for code clarity. For example, you might need to access a combination of columns frequently and don’t want to repeatedly perform the combining operation in your application.

Community

Bulk Replication

(Dimitri Fontaine) In the previous article here we talked about how to properly update more than one row at a time, under the title Batch Update. We did consider performances, including network round trips, and did look at the behavior of our results when used concurrently.