Archive for the ‘ORACLE Database’ Category
Oracle Database 23c – will be the next long term release of the database it will likely be released as cloud-first at the start of 2023 and released on-prem during the middle of 2023
Donnerstag, März 2nd, 2023Oracle Database 19c – Premier Support (PS) ends April 30, 2024 one year of free Extended Support (ES) will be in effect from May 1, 2024 until April 30, 2025
Donnerstag, März 2nd, 2023Oracle Database 19c – Direct NFS Client integrates the NFS client functionality directly in the Oracle software to optimize the I/O path between Oracle and the NFS server
Mittwoch, März 1st, 2023root@nas:~# showmount –exports
Export list for nas:
/volume2/ora19nfs_data 192.168.2.1/24
cd $ORACLE_HOME/rdbms/lib
make -f ins_rdbms.mk dnfs_on
mkdir -p /db_data/ORA19NFS
chown -R oracle:dba /db_data
vi /etc/fstab
# Insert the following line there the paths are to be adapted according to the environment
nas:/volume2/ora19nfs_data /db_data/ORA19NFS nfs rw,bg,hard,nointr,tcp,vers=3,timeo=600,rsize=32768,wsize=32768,actimeo=0 0 0
mount -a
df -h
nas:/volume2/ora19nfs_data 2.7T 732G 2.0T 27% /db_data/ORA19NFS
vi $ORACLE_HOME/dbs/oranfstab
server: nas
local: 192.168.2.109
path: 192.168.2.210
export: /volume2/ora19nfs_data mount: /db_data/ORA19NFS
Oracle Real Application Cluster (RAC) Release 19c Oracle Linux x86-64 – Installation Guide for Docker Containers
Samstag, Februar 25th, 2023Oracle RAC on VMware vSphere – requires local ’shared disks‘ to be accessed by all nodes of the RAC cluster so you have to use the VMware vSphere ‚Multi Writer / Paravirtual (PVSCSI)‘ technology
Sonntag, Februar 19th, 2023Oracle Standard Edition 2 (SE2) – neue Hochverfügbarkeitslösung Oracle Standard Edition High Availability (SEHA)
Mittwoch, Dezember 7th, 2022Oracle Standard Edition 2 (SE2) – bietet mit der Option Standard Edition High Availability (SEHA) eine Cold-Failover-Lösung für die SE2 an ähnlich wie bei der kostenpflichtigen RAC One Node-Option in der Enterprise Edition läuft bei der SEHA Lösung immer nur eine Oracle-Instanz auf einem Knoten im GI-Cluster und fällt ein Knoten aus wird die Oracle-Instanz auf dem anderen Knoten innerhalb kürzester Zeit gestartet die Datenbank kann dabei mit dem Tool „SRVCTL“ administriert werden
Oracle Database 21c Express Edition (XE) – is a free community supported edition of the world’s most popular Database
Montag, November 14th, 2022Oracle Database 21c Express Edition (XE) – CPU and memory limits have doubled to 2 CPUs 2 GB of RAM and 12GB of user data and is the ideal way to get started
Oracle 21c XE Database – how to install on Linux
Montag, November 14th, 2022Oracle Lifetime Support Policies – August 2022 for Database Releases
Samstag, Oktober 8th, 2022Oracle – steigerte in seinem IV. Quartal die Erlöse gegenüber dem Vorjahr um 5 % (währungsbereinigt um 10 %) auf $ 11,84 Milliarden Dollar
Dienstag, Juni 14th, 2022Oracle Database 12c Release 1 (12.1.) RAC on Oracle Linux 6 – you can use NFS to provide shared storage for a RAC installationit can just as easily be another server or even the RAC nodes itself
Mittwoch, Mai 4th, 2022Oracle Database Release ≥19.7 Standard Edition 2 (SE2) – Standard Edition High Availability (SEHA)
Mittwoch, April 27th, 2022 Oracle Database Release ≥ 19.7 Standard Edition 2 (SE2) – die Standard Edition High Availability (SEHA) Lizenzierung der Standard Edition 2 für maximal zwei Knoten und dabei kann die 10-Tages-Regel angewendet werden d.h. wenn auf dem zweiten Knoten nicht öfter als 10-mal bzw. 10 Tage pro Jahr die Oracle Database Instanz gestartet wird muss nur der erste Knoten mit der Standard Edition 2 (SE2) lizenziert werden
Oracle Automated Workload Repository (AWR) Report – the easy way to generate an report from from the SQL*Plus command line
Montag, März 14th, 2022SQL>@$ORACLE_HOME/rdbms/admin/awrrpt.sql
Oracle Database – find sessions consuming lot of CPU
Montag, März 14th, 2022 Oracle Database – use below query to find the sessions using a lot of CPU
col program form a30 heading „Program“
col CPUMins form 99990 heading „CPU in Mins“
select rownum as rank, a.*
from (
SELECT v.sid, program, v.value / (100 * 60) CPUMins
FROM v$statname s , v$sesstat v, v$session sess
WHERE s.name = ‚CPU used by this session‘
and sess.sid = v.sid
and v.statistic#=s.statistic#
and v.value>0
ORDER BY v.value DESC) a
where rownum < 11;
DTM Migration Kit 1.13.18 – a powerful data import export or transformation tool
Samstag, Februar 5th, 2022DTM Migration Kit – is an advanced data management tool that designed for the multi-vendor environment and rarely used database support. It allows user database administrator or developer to import data from most popular formats to export database content to migrate data from different data sources