Database Administration & Monitoring PostgreSQL partitioning (3): List partitioning 03.06.2019 by Daniel Westermann In the last posts of this series we prepared the data set and had a look at range partitioning. In this post we look at another partitioning strategy: List partitioning. Instead of(…)
Database Administration & Monitoring PostgreSQL partitioning (2): Range partitioning 03.06.2019 by Daniel Westermann Now that the data set is ready we will look at the first partitioning strategy: Range partitioning. Usually range partitioning is used to partition a table by days, months or years although you can partition by(…)
Database Administration & Monitoring PostgreSQL partitioning (1): Preparing the data set 02.06.2019 by Daniel Westermann This is the start of a series about partitioning in PostgreSQL. For this and the following posts I will use PostgreSQL 12 (which currently is in beta) so some stuff might not work if you are on PostgreSQL 11 or(…)
Database Administration & Monitoring PostgreSQL 12: New partition reporting functions 02.06.2019 by Daniel Westermann PostgreSQL 10 introduced declarative partitioning (with some limitations), PostgreSQL 11 improved that a lot (Updating the partition key now works in PostgreSQL 11, Insert…on conflict with partitions(…)
Application integration & Middleware WebLogic – Upgrade of Java 01.06.2019 by Morgan Patou If you are used to Java, you probably know that there are really important security fixes published every quarter in the Java Critical Patch Update (CPU) and it’s really important to keep it up to date. It’s always easy to(…)
Application integration & Middleware WebLogic – JAVA_HOME in WebLogic, a nightmare? 01.06.2019 by Morgan Patou Everybody knows Java but not everybody loves Java. With everything Oracle is currently doing regarding Java, I can’t say I’m blaming them… But that’s not the topic of this blog! hurrah. Well actually I’m not sure the topic of this(…)
Enterprise content management What to do in case all active Documentum jobs are no more running ? 01.06.2019 by Middleware Team The application support informed me that their jobs are not running anymore. When I started the analysis, I found that all activated jobs did not start for a few weeks.
Enterprise content management Documentum – DOCUMENTUM_SHARED is dead? 01.06.2019 by Morgan Patou In June last year, I did my first manual installation (so without docker) of Documentum 16.4 and I was testing it with PostgreSQL. I quickly realized that there were some changes in Documentum and, unfortunately, I don’t believe that it’s(…)
Database Administration & Monitoring PostgreSQL 12: Control when generic plans are used 31.05.2019 by Daniel Westermann When you are using prepared statements in PostgreSQL you might get a custom or a generic plan. Custom plans come with overhead of re-planning while generic plans avoid re-planning of the statement.
Database Administration & Monitoring Securely store passwords in PostgreSQL 31.05.2019 by Daniel Westermann Every application somehow needs to deal with passwords. Some use external authentication methods such as ldap, others us the the framework the database already provides and create users and roles. But it is also not uncommon that applications implement their(…)