Oracle Startup Time: Identify the Oralce Startup Time using SQL Script SQL Code 1select to_char(startup_time, 'HH24:MI DD-MON-YY') "Startup time" 2from v$instance 3/ Sample Oracle Output: 1 1 select to_char(startup_time, 'HH24:MI DD-MON-YY') "Startup time" 2 2* from v$instance 3SQL> / …
Read More