Catégorie : Oracle12C,19C
-
Suppression d’object sys
Il se peut que vous ayez créé sans le vouloir des objets dans le schéma sys. Pour les supprimer faites comme cela : select ‘drop procedure ‘||object_name||’ ;’ […]
-
Créer une base de dev
1-export des schémas : expdp system/********* directory=DUMPDIR dumpfile=content.dat logfile=content.log schemas=sche1,sche2,sch3 … content=METADATA_ONLY exclude=statistics 2- import du ddl dans le fichier sql.dat (lisible au format txt) impdp directory=DUMPDIR sqlfile=sql.dat logfile=sql.log dumpfile=content.dat […]
-
Purger les enregistrements d’audit (AUDIT_TRAIL records)
source : https://tips4oracle.wordpress.com/2014/06/03/how-to-check-the-size-of-archive-and-purge-the-audit-trail-table-aud-in-oracle-databse/ https://docs.oracle.com/database/121/DBSEG/audit_admin.htm#DBSEG474 http://orababy.blogspot.fr/2013/09/move-aud-and-fga-tables-from-system.html http://krishnaappsdba.blogspot.fr/2014/03/how-to-move-aud-table-from-system.html http://www.dbarj.com.br/en/2013/05/changing-audit-tablespace-create-purge-job-11g/ Purger une fois manuellement : BEGIN DBMS_AUDIT_MGMT.CLEAN_AUDIT_TRAIL( AUDIT_TRAIL_TYPE => DBMS_AUDIT_MGMT.AUDIT_TRAIL_UNIFIED, USE_LAST_ARCH_TIMESTAMP => TRUE, CONTAINER => DBMS_AUDIT_MGMT.CONTAINER_CURRENT ); END; /Planifier une purge automatique à […]
-
Désactiver l’audit
noaudit policy ORA_SECURECONFIG;noaudit policy ORA_LOGON_FAILURES; Source : https://mikedietrichde.com/2014/09/02/unified-auditing-is-it-on-or-off-in-oracle-12c/ http://www.orafaq.com/aggregator/sources/418CachedYou?page=5
-
L’analyse de l’activité – oracle 12c
Le paramètre heat_map permet un suivi de l’activité. SQL> show parameter heat_ 29-SEP-16 Report of Table Rebuild Candidates NAME TYPE VALUE———————————— ———– ——————————heat_map string OFF SQL> alter system set heat_map=on; System […]
-
Installer le schéma scott sur une 12C
SQL> conn c##scott/tiger;Connected.SQL> show user;USER is « C##SCOTT »SQL> @oracle.sqlBuilding demonstration tables. Please wait.Demonstration table build is complete. 1 – Créer un utilisateur scott : create user c##scott IDENTIFIED by tiger; grant […]
-
Optimisation table – stockage – 2 procs stock
affiche_espace_occupe d’une table. affiche_espace_inutilisee d’une table.