See this example for sample sql script formatting.
<font face=courier>
col owner format a12
col db_link format a36
col username format a12
col host format a12
col created format a12
select owner,
db_link,
username,
host,
created
from dba_db_links ;
</font>




Reply With Quote