bprasanna Asked: 2018-12-20 02:22:47 +0800 CST2018-12-20 02:22:47 +0800 CST 2018-12-20 02:22:47 +0800 CST 计算 Oracle 数据库启动操作的运行时间 772 我正在尝试计算 Oracle 数据库startup命令的运行时间。该视图V$INSTANCE包含STARTUP_TIME告诉数据库何时启动的列。startup但是,我需要找到从我们输入到打开数据库所经过的时间。 因为,我们无法查询SYSDATE或SYSTIMESTAMP数据库未打开时,我发现很难提出逻辑。 有没有其他方法我们可以获得startup操作的经过时间? oracle startup 1 个回答 Voted Best Answer Balazs Papp 2018-12-20T02:45:45+08:002018-12-20T02:45:45+08:00 [oracle@o71 ~]$ time sqlplus -s / as sysdba<<EOF > startup > exit > EOF ORACLE instance started. Total System Global Area 536867640 bytes Fixed Size 8659768 bytes Variable Size 322961408 bytes Database Buffers 197132288 bytes Redo Buffers 8114176 bytes Database mounted. Database opened. real 0m14.578s user 0m0.014s sys 0m0.016s [oracle@o71 ~]$
1 个回答