Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SPOOL <file>
SELECT...
SPOOL OFF
SPOOL <same file>
SELECT...
SPOOL OFF
SQL> select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss')now from dual;
NOW
-------------------
2006-09-15 09:49:14
SQL> spool off
SQL> get x.txt
1 SQL> select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss')now from dual;
2 NOW
3 -------------------
4 2006-09-15 09:49:14
5* SQL> spool off
6 .
SQL> spool x.txt
SQL> select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss')now from dual;
NOW
-------------------
2006-09-15 09:49:32
SQL> spool off
SQL> get x.txt
1 SQL> select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss')now from dual;
2 NOW
3 -------------------
4 2006-09-15 09:49:32
5* SQL> spool off