/ Published in: SQL
Borrar archivos Log con Rman
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
---ver espacios qye se puede reciclar SELECT space_limit/1024/1024 "Limit MB", space_used/1024/1024 "Used MB", space_reclaimable/1024/1024 "Reclaimable MB" FROM v$recovery_file_dest; --Shell inicienado sentencia $ rman target / --Una vez que tenemos prompt ejecutamos el comando DELETE con el periodo de un dÃa hacia atrás. RMAN> DELETE ARCHIVELOG UNTIL TIME 'sysdate -1'; --OTRA OPCION 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/