Database Administration & Monitoring, Database management, Oracle sqlplus and its column output 01.04.2018 by Clemens Bleile During tuning or normal DBA activities one of the most annoying things is sqlplus with its default column output when running queries. I.e. even after setting a linesize of 1000 and a pagesize of 1000 the output may look as(…)
Oracle Docker: efficiently building images for large software 31.03.2018 by Oracle Team By Franck Pachot . I see increasing demand to build a Docker image for the Oracle Database. But the installation process for Oracle does not really fit the Docker way to install by layers: you need to unzip the distribution,(…)
Oracle Docker-CE on Oracle Enterprise Linux 7 29.03.2018 by Oracle Team By Franck Pachot . Here is how I install the latest Docker version on Oracle Linux 7. You find several blog posts about it which all install 'docker-engine'. But things move fast in this agile world and docker package name(…)
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(…)