Advance compression für AUD$

Das ist doch mal eine gute Idee einfach die Audit Tabelle zu kompremeiren, wenn man schon eine Option hat. SQL>  select table_name, compression, compress_for from user_tables where table_name=’AUD$‘; TABLE_NAME ———————————————— COMPRESS COMPRESS_FOR ——– —————————— AUD$ DISABLED SQL>  ALTER TABLE SYS.AUD$ row store compress advanced; Table altered. SQL>  select table_name, compression, compress_for from user_tables where table_name=’AUD$‘; […]

dbms_ijob – alt – unbekannt

Das Problem, was wenn der Interval zu lange wird? dbms_ijob.interval(job => 406,                             interval => ‚case when to_number(to_char(sysdate,“D“)) between 2 and 6 then case when to_char(trunc(sysdate,“HH24“),“HH24“) between “04“ and “21“ then trunc(sysdate, “mi“)  + 0.5/24 else trunc(sysdate) + 28/24 end else trunc(sysdate) + (9 – to_number(to_char(sysdate, “D“)))+0.5/24 end‘                             ); Nun wird eben eine Funktion […]

orachk – the tool on RAC

orachk – the tool on RAC Oracle recommends that you download and run the latest version of ORAchk from My Oracle Support. For information about downloading, configuring and running ORAchk utility, refer to My Oracle Support note 1268927.1

LISTAGG . cool

SELECT LISTAGG(last_name, ‚; ‚) WITHIN GROUP (ORDER BY hire_date, last_name) „Emp_list“, MIN(hire_date) „Earliest“ FROM employees WHERE department_id = 30; Emp_list Earliest ———————————————————— ——— Raphaely; Khoo; Tobias; Baida; Himuro; Colmenares 07-DEC-02

Oracle Database Days 12c im Dezember:Fokus auf HA

Auch im Dezember werden die Oracle Database Days (ODD) 12c weitergeführt: Fokus in Monat Dezember ist Hochverfügbarkeit und Desaster Recovery. Neben RAC, Data Guard und RMAN gibt es auch einen Spezial Track zur neuen Oracle Zero Data Loss Appliance (ZDLRA). Ausserdem erfahren Sie, welche kleinen aber feinen Änderungen der Patch Set 12.1.0.2 im Bereich Hochverfügbarkeit […]

Default sqlnet Parameter

oracle@loramab$ lsnrctl  show INBOUND_CONNECT_TIMEOUT LSNRCTL for Linux: Version 11.2.0.3.0 – Production on 10-SEP-2014 11:29:33 Copyright (c) 1991, 2011, Oracle.  All rights reserved. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=loramab101)(PORT=1521))) LISTENER parameter „inbound_connect_timeout“ set to 60 The command completed successfully

Minimizing Backup Load and Duration

Whau – das war mir so noch nicht bekannt. Minimizing Backup Load and Duration When using DURATION you can run the backup with the maximum possible performance, or run as slowly as possible while still finishing within the allotted time, to minimize the performance impact of backup tasks. To maximize performance, use the MINIMIZE TIME […]

TS Quotas weg nach Enzug der DBA Rolle

Ja, ich weiß, dass DBA Rolle eh ein „no go“ ist – aber was soll man machen, wenn es jemand haben möchte. Wichtig ist an dieser Stelle nur zu wissen, dass für einen User einzeln auf Tablespace vergebene Quotas mit dem Entzug der DBA Rolle verlohren gehen – no BUG is a Feautre. SQL>grant dba […]

1 3 4 5 6 7