1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| system@DBA> select instance_name,host_name,version,startup_time from v$instance;
INSTANCE_NAME HOST_NAME VERSION STARTUP_T
---------------- ---------------------------------------------------------------- -----------------
dba LOCALHOST 10.2.0.1.0 03-AUG-06
system@DBA> set head off;
system@DBA> set colsep ";"
system@DBA> select instance_name,host_name,version,startup_time from v$instance;
dba ;LOCALHOST ;10.2.0.1.0 ;03-AUG-06
system@DBA> set colsep |
system@DBA> select instance_name,host_name,version,startup_time from v$instance;
dba |LOCALHOST |10.2.0.1.0 |03-AUG-06
system@DBA> |
Partager