Database Administration & Monitoring Insert…on conflict with partitions finally works in PostgreSQL 11 29.03.2018 by Daniel Westermann Another partitioning improvement for PostgreSQL 11: Insert...on conflict is now supported (for most cases) in PostgreSQL 11 thanks to this commit. Lets see how it works.
Database Administration & Monitoring How reimaging detects the ODA hardware? 29.03.2018 by Jérôme Dubar A long time ago, ODA referred to the only model that existed (nearly). Actually, not so long time ago, as ODA X3, X4 and X5 were released between 2013 and 2015. And it was quite the same hardware. Now there(…)
Database Administration & Monitoring The WAL segment size becomes changeable in PostgreSQL 11 27.03.2018 by Daniel Westermann Up to PostgreSQL 10 the wal segment size was fixed once PostgreSQL was compiled and installed. When you wanted to have something else than the default you needed to tell that to the configure command when building from source, e.g.
Database Administration & Monitoring The same MAC address for two interfaces on the same host? 27.03.2018 by Daniel Westermann Yes, sounds strange, but exactly this is what we faced today. In the end it is clear and not strange anymore but for a moment we really thought we are hitting a bug in the operating system, which was RedHat(…)
Database Administration & Monitoring When you execute the same statement thousands of times -> prepare it 26.03.2018 by Daniel Westermann Every time you send a SQL statement to PostgreSQL it must be parsed. Parsing is fast, yes, but parsing the same statement a thousand times can quickly sum up to quite some time the database could spend for something else.
Database Administration & Monitoring, Database management, PostgreSQL PostgreSQL – logical replication with pglogical 23.03.2018 by Joël Cattin Although PostgreSQL 10 integrate native logical replication (have a look here or here), it is always interesting to be aware of alternative solutions to the available in-core features. One of those is called(…)
Database Administration & Monitoring Updating the partition key now works in PostgreSQL 11 23.03.2018 by Daniel Westermann In the last post about partitioning improvements in PostgreSQL 11 we talked about unique indexes and primary keys on partitioned tables. Both did not work in PostgreSQL 10 but now do in PostgreSQL 11. Another operation that(…)
Database Administration & Monitoring Hash Partitioning in PostgreSQL 11 23.03.2018 by Oracle Team By Mouhamadou Diaw PostgreSQL 10 comes with partition support. But Hash Partitioning was not supported. PostgreSQL 11 will support Hash Partition. In the documentation we can read The table is partitioned by specifying a modulus and a remainder(…)
Database Administration & Monitoring What is the maximum in list size in PostgreSQL? 23.03.2018 by Daniel Westermann Yesterday, while being at a customer, an interesting question popped up: What is the maximum of in list values in PostgreSQL? I couldn't answer although I never read somewhere that there is a limit. The following is for fun only(…)
Database Administration & Monitoring Local partitioned indexes in PostgreSQL 11 22.03.2018 by Daniel Westermann When declarative partitioning was introduced with PostgreSQL 10 this was a big step forward. But as always with big new features some things do not work in PostgreSQL 10 which now get resolved in PostgreSQL 11. One of those are(…)