Borra archivos LOG Oracle usando RMAN


/ Published in: SQL
Save to your folder(s)

Borrar archivos Log con Rman


Copy this code and paste it in your HTML
  1. ---ver espacios qye se puede reciclar
  2. SELECT space_limit/1024/1024 "Limit MB", space_used/1024/1024 "Used MB",
  3. space_reclaimable/1024/1024 "Reclaimable MB"
  4. FROM v$recovery_file_dest;
  5.  
  6. --Shell inicienado sentencia
  7. $ rman target /
  8.  
  9. --Una vez que tenemos prompt ejecutamos el comando DELETE con el periodo de un día hacia atrás.
  10.  
  11. RMAN> DELETE ARCHIVELOG UNTIL TIME 'sysdate -1';
  12.  
  13. --OTRA OPCION
  14. RMAN> DELETE archivelog until TIME "to_date('2010-06-05 12:50:00','YYYY-MM-DD:HH24:MI:SS')";

URL: http://burzaco.wordpress.com/2010/07/09/clean-logs-with-rman/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.