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(…)
Ansible, DevOps redhat event Ansible Automates Zurich 20.03.2018 by DevOps Here are some fresh personal impressions from the “Ansible Automates Zurich” half day event organized by redhat. There was a overwhelming interest for this event. About 200 people filled the room and there were many more on the waiting(…)
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(…)
Oracle Result cache invalidation caused by DML locks 18.03.2018 by Oracle Team By Franck Pachot . In a previous post about Result Cache, I was using 'set autotrace on' in my session to see when the result cache hit saves the logical reads. I got a comment, by(…)