(Tim van der Linden) PostgreSQL, the database of miracles, the RDBMS of wonders.
Tag: Open Source
Use MySQL to store NoSQL and SQL data in the same database using memcached and InnoDB
(Tony Darnell) MySQL is a great relational database, but at some point someone (management) in your company is probably going to say that they need to use NoSQL to store their data. After all, NoSQL is one of the latest buzzwords, so it must be good (correct?).
Postgres 9.4 feature highlight: Creating an output plugin for logical replication
(Michael Paquier) Continuing on the series of posts about logical replication and after looking at some basics and the concept of REPLICA IDENTITY for a table, now is time to begin more serious things by having a look at how to develop an output plugin for the logical decoding facility.
Importing XML, CSV, Text, and MS Excel Files into MySQL
(Rob Gravelle) My most recent articles, Importing XML Data into MySQL Tables Using a Stored Procedure and Enhance Your MySQL XML Import Procedures using Prepared Statements, explored how capable stored procedures were in importing XML-formatted data. At the end of those articles, I concluded that as
Parallel Query for MySQL with Shard-Query
(Justin Swanhart) While Shard-Query can work over multiple nodes, this blog post focuses on using Shard-Query with a single node. Shard-Query can add parallelism to queries which use partitioned tables. Very large tables can often be partitioned fairly easily. Shard-Query can leverage partitioning
Garbage Collection of Unused PostgreSQL Tables and Columns
(Joel Jacobson) Over the last five years, our database at Trustly have kept growing in number of tables, columns and functions, where some of the tables and columns aren’t being used by any database functions any longer. Getting rid of them is important, as otherwise people working with the database
How to start PostgreSQL the Debian way with pg_ctl
(Jeff Frost) Sometimes I find myself wanting to start a PostgreSQL cluster with pg_ctl on a Debian or Ubuntu system. If you’ve ever tried this, you know that something like this doesn’t work:
Disabling Binlog_checksum for MySQL 5.5/5.6 Master-master Replication
(Ike Walker) Replicating from a newer major version to an older major version in MySQL (for example a 5.6 master and a 5.5 replica) is generally not recommended, but when upgrading a master-master replication topology it’s hard to avoid this scenario entirely.
JOIN Versus Key-Value Stores
(Baron Schwartz) I was listening to a conversation recently and heard an experienced engineer express an interesting point of view on joins and key-value databases. I don’t entirely agree with it. Here’s why.
Custom plans prepared statements in PostgreSQL 9.2
(Greg Sabino Mullane) Someone was having an issue on the #postgresql channel with a query running very fast in psql, but very slow when using DBD::Pg. The reason for this, of course, is that DBD::Pg (and most other clients) uses prepared statements in the background.
