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(…)
Database Administration & Monitoring pg_basebackup and redirecting progress messages to a file 21.03.2018 by Daniel Westermann Recently I came over that commit and wondered what that is about. The answer is quite simple but I didn't know that this issue existed. Basically it is about how progress messages are written to screen and(…)
Database Administration & Monitoring PostgreSQL 11: Procedures and transaction control 20.03.2018 by Daniel Westermann Up to PostgreSQL 10 it was not possible to create procedures in PostgreSQL. Of course you can create functions which do not return anything but the possibility to create a procedure was not there. That will probably change in PostgreSQL(…)
Database Administration & Monitoring, Development & Performance, SQL Server, Technology Survey SQL Server 2017: Can I run a “standard” rebuild on the index after a Resumable Online Index Rebuild is suspended? 20.03.2018 by Stéphane Haby This article is an additional article to my precedent about “SQL Server 2017: What’s happens with an interruption during a Resumable Online Index Rebuild?”(…)
Database Administration & Monitoring, Development & Performance, SQL Server, Technology Survey SQL Server 2017: What’s happens with an interruption during a Resumable Online Index Rebuild? 20.03.2018 by Stéphane Haby Last week, I presented this option in our internal event, the dbi xChange. My colleague David Barbarin asked me this question, what’s append if an interruption occurs (reboot, SQL Server service stopped,…) during a Resumable(…)
Database Administration & Monitoring Finally you will be able to use exit and quit in psql 20.03.2018 by Daniel Westermann When giving the PostgreSQL DBA Essentials workshop one of the main issues people have is how they can exit psql. Even on stackoverflow this is a popular topic. The good news(…)