Database Administration & Monitoring Where can you find core developers asking people what is missing in PostgreSQL? pgconf.eu.2019 17.10.2019 by Daniel Westermann One of the major advantages of PostgreSQL conferences when you compare it to other conferences is, that you can listen to talks where the actual developers are presenting their work. You have questions about a feature, you want to know(…)
Database Administration & Monitoring Creating a customized PostgreSQL container using buildah 16.10.2019 by Daniel Westermann Quite some time ago I blogged about how you could build your customzized PostgreSQL container by using a Dockerfile and Docker build. In the meantime Red Hat replaced Docker in(…)
Database Administration & Monitoring Migrating your users from md5 to scram authentication in PostgreSQL 11.07.2019 by Daniel Westermann One of the new features in PostgreSQL 10 was the introduction of stronger password authentication based on SCRAM-SHA-256. How can you migrate your existing users that currently use md5 authentication to the new method without any(…)
Database Administration & Monitoring Converting columns from one data type to another in PostgreSQL 08.07.2019 by Daniel Westermann Usually you should use the data type that best fits the representation of your data in a relational database. But how many times did you see applications that store dates or numbers as text or dates as integers? This is(…)
Database Administration & Monitoring Telling the PostgreSQL optimizer more about your functions 07.07.2019 by Daniel Westermann When you reference/call functions in PostgreSQL the optimizer does not really know much about the cost nor the amount of rows that a function returns. This is not really surprising as it is hard to predict what the functions is(…)
Database Administration & Monitoring Modifying pg_hba.conf from inside PostgreSQL 29.06.2019 by Daniel Westermann During one of the sessions from the last Swiss PGDay there was a question which could not be answered during the talk: Is it possible to modify pg_hba.conf from inside PostgreSQL without(…)
Database Administration & Monitoring PostgreSQL on the beach, PGIBZ, recap 23.06.2019 by Daniel Westermann So, finally, PostgreSQL on the beach is over. During discussions it was mentioned that some companies had issues to justify sending people to a conference to Ibiza. It was not really clear if they wanted to avoid the impression of(…)
Database Administration & Monitoring PostgreSQL partitioning (8): Sub-partitioning 18.06.2019 by Daniel Westermann We are slowly coming to the end of this little series about partitioning in PostgreSQL. In the last post we had a look at indexing and constraints and today we will have a look at sub partitioning. Sub partitioning means(…)
Database Administration & Monitoring PostgreSQL partitioning (7): Indexing and constraints 07.06.2019 by Daniel Westermann Yesterday we talked about attaching and detaching of partitions. Today we will look at indexing and constraints when it comes to partitioned tables. If you missed the last posts, again, here they are: PostgreSQL partitioning (1):(…)
Database Administration & Monitoring PostgreSQL partitioning (6): Attaching and detaching partitions 06.06.2019 by Daniel Westermann Having talked about partitioning strategies and partition pruning this time we will have a look on how you can attach and detach partitions to and from an existing partitioned table. If you missed the last posts about partitioning in PostgreSQL(…)