Database Administration & Monitoring Backup and Restore PostgreSQL with PgBackRest II 15.02.2018 by Oracle Team By Mouhamadou Diaw In a precedent blog I shown a basic utilization of PgBackRest which is a tool to backup and restore PostgreSQL databases. In this blog I am going to talk some useful(…)
Database Administration & Monitoring Backup and Restore PostgreSQL with PgBackRest I 14.02.2018 by Oracle Team By Mouhamadou Diaw Many tools can be used to backup PostgreSQL databases. In this blog I will talk about PgBackRest which is a simple tool that can be used to backup and restore a PostgreSQL database. Full,(…)
Database Administration & Monitoring How we build our customized PostgreSQL Docker image 13.02.2018 by Daniel Westermann Docker becomes more and more popular these days and a lot of companies start to really use it. At one project we decided to build our own customized Docker image instead of using the official PostgreSQL one.
Database Administration & Monitoring Does pg_upgrade in check mode raises a failure when the old cluster is running? 12.12.2017 by Daniel Westermann Today I had the pleasure to have Bruce Momjian in my session about PostgreSQL Upgrade Best Practices at the IT Tage 2017 in Frankfurt. While browsing through the various options you(…)
Database Administration & Monitoring Are statistics immediately available after creating a table or an index in PostgreSQL? 28.11.2017 by Daniel Westermann While giving the last PostgreSQL DBA Essentials workshop this question came up: When we create a table or an index: are the statistics available automatically? To be more precise: When we create and load a table in(…)
Database Administration & Monitoring DBVISIT from Oracle to Postgres 27.11.2017 by Oracle Team As I regularly work on Oracle and PostgreSQL, I decided to test the replication from Oracle to PostgreSQL using the Dbvisit Replicate tool. Dbivisit Replicate does not use Oracle logminer ot triggers but its own mining processes to(…)
Database Administration & Monitoring Create index CONCURRENTLY in PostgreSQL 22.11.2017 by Daniel Westermann In PostgreSQL when you create an index on a table, sessions that want to write to the table must wait until the index build completed by default. There is a way around that, though, and in this post we'll look(…)
Database Administration & Monitoring Is it an index, a table or what? 19.11.2017 by Daniel Westermann A recent tweet from Kevin Closson outlined that in PostgreSQL it might be confusing if something is an index or table. Why is it like that? Lets have a look and start be re-building the example from(…)
Database Administration & Monitoring A response to: What makes a community? 16.11.2017 by Daniel Westermann A recent tweet of mine resulted in Martin Widlake to write a really great blog post about What makes a community. Please read it before you continue to read this. There was another response(…)
Database Administration & Monitoring Can I do it with PostgreSQL? – 18 – Instead of triggers on views 15.11.2017 by Daniel Westermann It has been quite a while since the last post in this series but today comes the next one. Being at a customer this morning this question popped up: Can we have instead of triggers on a view in PostgreSQL(…)