Database 12c Upgrade Workshop. … Morgen in Düsseldorf – ich bin dabei.
Kategorie: Oracle Database
v$database_block_corruption
Wir hatten es mal mit korrupten Blöcken zu tun. Diese kann man so finden: — Welche Art von Corruption: col CORRUPTION_CHANGE# format 999999999999 select CORRUPTION_TYPE , min(CORRUPTION_CHANGE#) CORRUPTION_CHANGE# , count(*) Anz from V$DATABASE_BLOCK_CORRUPTION group by CORRUPTION_TYPE order by 1 ; CORRUPTIO CORRUPTION_CHANGE# ANZ ——— —————— ———- NOLOGGING 31880926200 1632 — […]
Alert-File über External Table auswerten
Mapping the Oracle alert log is easy and once defined, all you have to do is query it with standard SQL syntax: create directory BDUMP as ‚/software/oracle/oracleBase/diag/rdbms/alkisrep/alkisrep/trace‘; create table alert_log ( msg varchar2(80) ) organization external ( type oracle_loader default directory BDUMP access parameters ( records delimited by newline […]
Parsing LISTENER.ORA with awk and sed
Parsing LISTENER.ORA with awk and sed posted by Jeremy ⋅ November 28, 2008
Active Session History
Active Session History in Cloud Control 12c – einem spannenden Artikel der DBA Community. Danke an Ulrike Schwinn.
ALTER SESSION Recht
Oft wird spekuliert, ob überhaupt das Recht für ALTER SESSION vergeben sein muss, um den Befehl verwenden zu können. Das dies im Bereich von NLS nicht benötigt wird, ist sicher bekannt. Aber auch für CURRENT_SCHEMA ist das nicht nötig und hier ist unter 11g der Beweis: grant connect to h_user identified by xxx; Grant succeeded. […]
Oracle: Patches – Datei im ORACE_HOME
Es ist nicht immer leicht, das Patchen. Aber es gibt auch Stoplersteine. Es wird nun beim Auspacken eine Datei PatchSearch.xml im ORACLE_HOME abgelegt. Diese zeigt wohl Oracle Cloud Control was Sache ist: 27.2.4.5.2 Uploading Patches to Software Library Using the Cloud Control Console Using this method, you can upload only a single patch at a […]