Database Administration & Monitoring PostgreSQL as a central reporting hub? – Yes, of course 28.06.2016 by Daniel Westermann For every client we do projects for there usually are database systems from various vendors. In most places you at least find some Oracle and MS SQL Server databases. Probably somewhere there are even some MySQL/MariaDB or PostgreSQL instance running.
Database Administration & Monitoring Swiss PGDAY 2016, Slides are online 28.06.2016 by Daniel Westermann Last Friday the Swiss PGDAY happened in Rapperswil. All the slides as well as some pictures are now availble (tab “Programm”): >(…)
Database Administration & Monitoring, Database management Which parameter changes do require a restart of my PostgreSQL instance? 10.06.2016 by Daniel Westermann Starting wiht PostgreSQL 9.4 you can change parameters in postgresql.conf with the "alter system" command in psql. In principle every parameter can be changed that way but not every parameter is applied immediately. Some of(…)
Database Administration & Monitoring A near zero downtime, near zero impact major release upgrade using Oracle GoldenGate 19.05.2016 by Daniel Westermann In this post I'd like to share what we did for a customer who had the following requirements: Use Oracle GoldenGate Upgrade an Oracle 10.2.0.4 database running on Solaris 10 SPARC to Oracle 12.1.0.2 running on Exadata Keep(…)
Database Administration & Monitoring A look at PostgreSQL 9.6 – psql gexec 19.05.2016 by Daniel Westermann This little, but powerful, enhancement that it made it in PostgreSQL 9.6 is probably nothing a application can benefit of. But it can be huge saving for people doing maintenance operations on a PostgreSQL instance. It is(…)
Database Administration & Monitoring A look at PostgreSQL 9.6 – Killing idle transactions automatically 18.05.2016 by Daniel Westermann A common issue with databases: The guy at floor 2 did some work on the database and then rashly left for lunch because the lady on floor 1 is already waiting for him. Unfortunately he did not close his transaction(…)
Database Administration & Monitoring A look at PostgreSQL 9.6 – progress reporting for VACUUM operations 18.05.2016 by Daniel Westermann Vacuum in PostgreSQL is one of the most important points to consider when managing a PostgreSQL instance. Usually vacuum is running in the background and just gets the job done. But, as always, there are situations when(…)
Database Administration & Monitoring A look at PostgreSQL 9.6 – The wait interface 16.05.2016 by Daniel Westermann For a long time there was no real wait interface in PostgreSQL core. Now, with the upcoming 9.6, pg_stat_activity was extended to provide more meaningful information for what a session is currently waiting on.
Database Administration & Monitoring Connecting your PostgreSQL instance to a Microsoft SQL Server instance 10.05.2016 by Daniel Westermann In the last posts I looked at how you can connect Oracle and MariaDB/MySQL to a PostgreSQL instance. In this post I'll do the same with a MS SQL Server instance.