Database management, Development & Performance, SQL Server SQL Server 2025 – Optimized Locking 22.07.2025 by Roger Schönmann Within the past few days I was investigating one of the new features of SQL Server 2025: Optimized Locking. I was curious about the capabilities, the behaviour and as well the limits of the feature. Optimized Locking is based on(…)
Database management, Development & Performance, SQL Server SQL Server 2025 – OPTIMIZED_SP_EXECUTESQL 21.07.2025 by Roger Schönmann Within the past few days I was investigating another new feature of SQL Server 2025: OPTIMIZED_SP_EXECUTESQL. I was curious about the capabilities and the behaviour. OPTIMIZED_SP_EXECUTESQL is a database scoped configuration which allows us to get rid of the overhead(…)
Ansible, YaK Faster Ansible 08.04.2024 by Middleware Team Even if Ansible is powerful and flexible, it can be considered “slow”. It will be anyway faster, and more consistent, than doing the same steps manually. Nevertheless, we will experiment to make it even faster. I found few of them(…)
Database Administration & Monitoring, Database management, Development & Performance, Oracle Oracle Lock Free Reservations 27.09.2023 by Oracle Team The Oracle 23c new feature Lock Free Reservations allows to break with the traditional locking mechanism. Now multiple concurrent sessions can update the same row without be blocked !!! Let’s see how it works. In the traditional locking mechanism,(…)
Database Administration & Monitoring, Database management, DevOps, Development & Performance, Oracle SHELL SCRIPTING: improve DBA scripts readability using J2 templates 27.02.2023 by Oracle Team Quering database's by using SQL in shell scripts can make the whole script unreadable. Very oftent the query is unredable too, due to the variable usage. This situation make the script debugging a pain. Templating simplify the script by taking(…)
Database Administration & Monitoring, Database management, Development & Performance, Oracle Oracle Exchange Partition 21.10.2022 by Oracle Team The Oracle Exchange Partition is a method allowing to : exchange the data segments from a non partitioned table to a partitioned table exchange the data segments from a partitioned table to a non partitioned table. This method is useful(…)
Business Intelligence, Development & Performance Data Platform Summit 2022 – Cracking Power BI Performance Tuning In A Day! 20.09.2022 by Christophe Cosme Introduction The second pre-conf I attended was about tuning Power BI. I was curious to hear and learn from Nikola Ilic, who presented the session, what his experience and technique are dealing to solve Power BI performance issues The agenda(…)
Database Administration & Monitoring, Database management, SQL Server How to solve Stored Procedure parameter sniffing problems 11.03.2022 by Stéphane Savorgnano Since Tuesday, I have the chance to follow the SQLBits 2022 conference. Sadly, I have to do it remotely this year but I promise next time I will come in-person 😉 SQLBits is one of the largest(…)
Database Administration & Monitoring, Database management, Development & Performance, Oracle Oracle Partition and Performance of massive/concurrent Inserts 24.01.2022 by Oracle Team For a customer, I had to check if partitioning improves performance of massive and concurrent inserts. The goal is to execute several Inserts in parallel via dbms_parallel_execute package (my previous blog “parallelize your Oracle Insert with DBMS_PARALLEL_EXECUTE” explains how(…)
Database Administration & Monitoring Improve Oracle Insert Performance with BULKCOLLECT and FORALL 17.11.2021 by Oracle Team As specified by Steven Feuerstein into the Oracle Blog Website the bulk processing features of PL/SQL are designed specifically to reduce the number of context switches required to communicate from the PL/SQL engine to the SQL engine. Using BULK(…)