How to Check if Oracle Database is Runningby Ed ChenJanuary 26, 2023March 13, 2023To make sure that an Oracle database is alive, we can use a piece of shell script to check it. [oracle@test ~]$ vi check_database_alive.sh #!/bin/bash… Read More »How to Check if Oracle Database is Running
Oracle Undo Tablespace Usageby Ed ChenMay 28, 2014February 2, 20222 CommentsThe first purpose of using UNDO is for storing all uncommitted data in case we need to undo uncommitted data in rollback or after system… Read More »Oracle Undo Tablespace Usage