Archive for the ‘ORACLE Database’ Category

Oracle Private Cloud Appliance (PCA) – die Anlieferung für die Universitätsklinik Essen

Samstag, Juni 30th, 2018

Oracle Database 12c – the dbms_resource_manager package has a nice procedure called ‚calibrate_io‘ which is perfect for calibrating disk latency and system throughout

Mittwoch, Juni 27th, 2018

Oracle12c_logo   The DBA can assess the I/O capability of the database’s storage system by using the PL/SQL function DBMS_RESOURCE_MANAGER.CALIBRATE_IO() – this routine issues a very I/O intensive read-only workload to thedatabase’s files to assess the maximum IOPS (I/O requests per second) and MBPS (megabytes of I/O per second) that canbesustained. This data can be reexamined at any time using the DBA table, DBA_RSRC_IO_CALIBRATE, that stores I/Ocalibration results. The calibration should be performed when the database is idle and during off-peak hours to minimizethe heavy I/O workload from interfering with the regular workload and vice versa. I/O calibration can be used tounderstand the performance of the storage subsystem and figure out whether I/O performance problems stem from thedatabase or the storage subsystem. Unlike various external I/O calibration tools, this tool uses the Oracle code stack and issues I/O randomly rather than sequentially the results therefore much more closely match the actual database Performance

calibrate_io.sql
rem ***********************************************************
rem
rem
File: calibrate_io.sql
rem
Description: PL/SQL reoutine to calibrate IO
rem  
rem
From ‚Oracle Performance Survival Guide‘ by Guy Harrison
rem
Chapter 21 Page 624
rem
ISBN: 978-0137011957
rem
See www.guyharrison.net for further information
rem 
rem
This work is in the public domain NSA
rem  
rem
rem *********************************************************
set serveroutput on
set echo on
DECLARE
   v_max_iops         NUMBER;
   v_max_mbps         NUMBER;
   v_actual_latency   NUMBER;
BEGIN
   DBMS_RESOURCE_MANAGER.calibrate_io(
        num_physical_disks => 8,
        max_latency => 10,
        max_iops => v_max_iops,
        max_mbps => v_max_mbps,
        actual_latency => v_actual_latency);
       
   DBMS_OUTPUT.put_line(‚Max IOPS=‘ || v_max_iops);
   DBMS_OUTPUT.put_line(‚Max MBps=‘ || v_max_mbps);
   DBMS_OUTPUT.put_line(‚Latency =‘ || v_actual_latency);
  
END;
/

HPE ProLiant Gen10 Server ‚Persistent Memory‘ – virtualized with VMware vSphere 6.7 delivering 2.3M IOPS, 30GB of bandwidth and virtually no latency

Samstag, Juni 23rd, 2018

Oracle Database 18c – on-premises is supposed to be generally available with the July 2018 Update

Donnerstag, Juni 21st, 2018

Swingbench 2.6 – is a free load generator (and benchmarks) designed to stress test an Oracle database (11g,12c)

Donnerstag, Mai 17th, 2018

Oracle Lifetime Support Policies – January, 2018 for Database Releases

Montag, April 30th, 2018

VMware Cloud on Amazon Web Services (AWS) – Oracle licensing does not change from a licensing perspective

Mittwoch, März 21st, 2018

Whether you run Oracle workloads on a classic vSphere environment, Hyper-Converged Infrastructure solution like vSAN, or VMware Cloud on AWS

In the VMware Cloud on AWS every host has 2 sockets with 18 cores per socket. Therefore the effective number of cores for licensing Oracle workloads using Enterprise Edition (EE) for that 1 host = Absolute number of cores / per socket per host * Processor Core Factor = 2 x 18 x 0.5 = 18 effective cores per host

Oracle Customer Success – Police Department Oldenburg

Donnerstag, Februar 1st, 2018

   Oracle Customer Success – Police Department Oldenburg Fully Insources Database Management, Responds to Database Failures 6x Faster Thanks to Comprehensive Training Plan

Oracle Cloud – see how NHS Business Services Authority is using Oracle Cloud to improve patient care

Montag, Januar 1st, 2018

Oracle Autonomous Database 18c – delivers full end-to-end automation for mission-critical workloads, including automation in provisioning, patching, securing, monitoring, optimizing, and more

Mittwoch, Dezember 27th, 2017

Oracle Autonomous Database 18c – security patches and updates are applied automatically

Samstag, Dezember 9th, 2017

Oracle Executive Chairman & Chief Technology Officer Larry Ellison – Oracle OpenWorld 2017

Dienstag, November 21st, 2017

Oracle Software Technical Support Policies | 29-September-2017 | – Database Releases

Dienstag, Oktober 3rd, 2017

Oracle Software Technical Support Policies | 29-September-2017 |

Extended Support for the Oracle Enterprise Edition Database 11.2 runs to December 31, 2020 – the Extended Support fee for Oracle Database 11gR2 11.2 has been waived to December 31, 2018

Extended Support for the Oracle Enterprise Edition Database 12c Release 1 (12.1) runs to July 31, 2021 – the Extended Support fee for Oracle Enterprise Edition Database 12c Release 1 (12.1) has been waived to July 31, 2019

Oracle Database 18c – The World’s #1 Database Is Now the World’s First Self-Driving Database

Montag, Oktober 2nd, 2017

Oracle Real Application Cluster 12c Grid – Infrastructure Installation and Configuration

Samstag, August 26th, 2017