Database management Using VSS snapshots with SQL Server – part I 18.05.2015 by Microsoft Team This is probably a series of blog posts about some thoughts concerning VSS snapshots with database servers. Let’s begin with this first story: Some time ago, I implemented a backup strategy at one of my customers based on FULL(…)
Database management Get the main information from SQL Server databases with PowerShell 18.05.2015 by Nathan Courtine As I promised in my previous blog Get the main Administration Information from SQL Server with PowerShell, I will present you this time how to retrieve the SQL Server databases information with PowerShell. Disclaimer: I am not a(…)
Database management Get SQL Server Network Configuration with PowerShell 18.05.2015 by Nathan Courtine This blog is part of a set which try to automate the SQL Server administration with PowerShell. It explains how to retrieve the network configuration of a SQL Server instance with PowerShell. I will refer to my previous blog Get(…)
Database management What will be coming with the next major version of postgresql ? 18.05.2015 by Daniel Westermann A PostgreSQL major version is usually released once a year. For the next major version, which is 9.5, this probably will be in the second half of 2015. As PostgreSQL is an open source product everything that(…)
Database management, Oracle Variations on 1M insert (6): CPU Flame Graph 18.05.2015 by Oracle Team By Franck Pachot . If you followed the 1M rows insert variations, you have seen how something simple brought me into an investigation with the latest tools available to see where the time is spent. When the time is(…)
Database management, Oracle Variations on 1M rows insert (5): using ‘perf’ 18.05.2015 by Oracle Team By Franck Pachot . In previous post I explained that I’ve observed a 2x CPU usage when running my insert test case in 11.2.0.4 vs. 11.2.0.2 I discussed that with @martinberx @OracleSK @TanelPoder @xtner @Ycolin @fritshoogland @lleturgez @LucaCanaliDB on(…)
Database management, Oracle Variations on 1M rows insert (4): IN MEMORY 18.05.2015 by Oracle Team By Franck Pachot . Oracle In-Memory option is for reporting. Oracle has chosen an hybrid approach: maintain the In-Memory Column Store in addition of the buffer cache. Dont’ forget our In-Memory event, but for the moment, let’s try(…)
Database management, Oracle Matching SQL Plan Directives and queries using it 18.05.2015 by Oracle Team By Franck Pachot . This is another blog post I’m writing while reviewing the presentation I’m doing next week forSOUG and next month for DOAG. You have SQL Plan Directives used by several queries that have same(…)
Database management, Oracle Matching SQL Plan Directives and extended stats 18.05.2015 by Oracle Team By Franck Pachot . This year is the year of migration to 12c. Each Oracle version had its CBO feature that make it challenging. The most famous was the bind variable peeking in 9iR2. Cardinality feedback in 11g also(…)
Database management, Oracle Variations on 1M rows insert (4): APPEND_VALUES 18.05.2015 by Oracle Team By Franck Pachot . In the first variation I did a bulk insert with the PL/SQL FORALL statement. A comment suggests to add the APPEND_VALUES hint that appeared in 11gR2. APPEND_VALUES hint does the same than APPEND but(…)