Database Administration & Monitoring, SQL Server Validate your SQL Server infrastructure with dbachecks 14.12.2020 by Microsoft Team Introduction In this blog post, I’ll do an introduction to the PowerShell module dbachecks. dbachecks uses Pester and dbatools to validate your SQL Server infrastructure. With very minimal configuration you can check that(…)
Database Administration & Monitoring, Database management, Oracle, Security Oracle 21c Security : Mandatory Profile 11.12.2020 by Oracle Team By Mouhamadou Diaw With Oracle 21c, it is now possible to enforce a password policy (length, number of digits…) for all pluggable databases or for specific pluggable databases via profiles. This is done by creating a mandatory profile in the(…)
Database Administration & Monitoring Easy failover and switchover with pg_auto_failover 10.12.2020 by Daniel Westermann One the really cool things with PostgreSQL is, that you have plenty of choices when it comes to tooling. For high availability we usually go with Patroni, but there is also pg_auto_failover(…)
Database Administration & Monitoring, Database management, Oracle, Security Oracle 21c Security : Gradual Database Password Rollover 10.12.2020 by Oracle Team By Mouhamadou Diaw Starting with Oracle 21c, a password of an application can be changed without having to schedule a downtime. This can be done by using the new profile parameter PASSWORD_ROLLOVER_TIME This will set a rollover period of(…)
Database Administration & Monitoring, Database management, Oracle, Security Oracle 21c Security : ORA_STIG_PROFILE and ORA_CIS_PROFILE 10.12.2020 by Oracle Team By Mouhamadou Diaw In my previous blog I was testing the creation of a new Oracle 21c database. In this blog I am talking about two changes about the security. In each new(…)
Database Administration & Monitoring, Database management, Oracle Oracle 21c : Create a New Database 09.12.2020 by Oracle Team By Mouhamadou Diaw Oracle 21c is now released on the cloud. And in this blog I am just testing my first database creation . As earlier release dbca is still present. Just launch it 1 [oracle@oraadserver admin]$ dbca(…)
Database Administration & Monitoring, Database management, Hardware & Storage, Oracle A typical ODA project (and why I love Oracle Database Appliance) 08.12.2020 by Jérôme Dubar Introduction You can say everything about Oracle infrastructure possibilities but nothing compares to experience based on the realization of real projects. I did quite a lot of ODA projects during the past years (on other platforms too), and I would(…)
Database Administration & Monitoring Incremental materialized view maintenance for PostgreSQL 14? 07.12.2020 by Daniel Westermann Since PostgreSQL 9.3 there is the possibility to create materialized views in PostgreSQL. PostgreSQL 9.4 (one year later) brought concurrent refresh which already is a major step forward as this allowed querying(…)
Database Administration & Monitoring Even faster data loading with PostgreSQL 14? wal_level=none 05.12.2020 by Daniel Westermann PostgreSQL is already very fast with loading loading large amounts of data. You can follow this post to get some recommendations for loading data as fast as possible. In addition you can create(…)
Database Administration & Monitoring, SQL Server An Introduction to Pester – Unit Testing and Infrastructure checks in PowerShell 03.12.2020 by Microsoft Team Introduction If you never heard of it, Pester is a PowerShell module, written in PowerShell. It’s a framework for writing and running unit tests, integration tests, and also infrastructure checks as we will see in a moment.