spool sel2 --October 29, 2009 Example of how to write sqlplus code with comments and headers set echo on set verify on set linesize 140 set heading on set wrap on set pagesize 60 set termout on SELECT * from account; select * from account: select * FROM ACCOUNT; select account_number, branch_name from account: select branch_name from account; select distinct branch_name from account; spool off;