Advertisement
Guest User

Untitled

a guest
May 22nd, 2013
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. [oracle@node1 ~]$ time sqlplus / as sysdba<<THEEND
  2. > startup;
  3. > quit;
  4. > THEEND
  5.  
  6. SQL*Plus: Release 11.2.0.2.0 Production on Sat May 18 02:17:53 2013
  7.  
  8. Copyright (c) 1982, 2010, Oracle. All rights reserved.
  9.  
  10. Connected to an idle instance.
  11.  
  12. SQL> ORACLE instance started.
  13.  
  14. Total System Global Area 1653518336 bytes
  15. Fixed Size 2227032 bytes
  16. Variable Size 1191183528 bytes
  17. Database Buffers 452984832 bytes
  18. Redo Buffers 7122944 bytes
  19. Database mounted.
  20. Database opened.
  21. SQL> Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
  22. With the Partitioning, OLAP, Data Mining and Real Application Testing options
  23.  
  24. real 0m10.290s
  25. user 0m0.015s
  26. sys 0m0.022s
  27. [oracle@node1 ~]$
  28.  
  29. [oracle@node1 ~]$ time sqlplus / as sysdba <<THEEND
  30. > shutdown;
  31. > quit;
  32. > THEEND
  33.  
  34. SQL*Plus: Release 11.2.0.2.0 Production on Sat May 18 02:19:04 2013
  35.  
  36. Copyright (c) 1982, 2010, Oracle. All rights reserved.
  37.  
  38.  
  39. Connected to:
  40. Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
  41. With the Partitioning, OLAP, Data Mining and Real Application Testing options
  42.  
  43. SQL> Database closed.
  44. Database dismounted.
  45. ORACLE instance shut down.
  46. SQL> Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
  47. With the Partitioning, OLAP, Data Mining and Real Application Testing options
  48.  
  49. real 0m7.987s
  50. user 0m0.017s
  51. sys 0m0.013s
  52. [oracle@node1 ~]$
  53.  
  54.  
  55. [oracle@node1 ~]$ time dbstart $ORACLE_HOME
  56. Processing Database instance "PHIL112": log file /u01/app/oracle/product/11.2.0/dbhome_1/startup.log
  57.  
  58. real 0m10.391s
  59. user 0m0.083s
  60. sys 0m0.170s
  61. [oracle@node1 ~]$
  62.  
  63. [oracle@node1 ~]$ time dbshut $ORACLE_HOME
  64. Processing Database instance "PHIL112": log file /u01/app/oracle/product/11.2.0/dbhome_1/shutdown.log
  65.  
  66. real 0m6.002s
  67. user 0m0.034s
  68. sys 0m0.084s
  69. [oracle@node1 ~]$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement