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.
declare
FileOut utl_file.file_type;
Begin
FileOut := utl_file.fopen('D:\dhunt\sqldba','Asth.txt','W');
for r in (select * from s_region)
Loop
utl_file.put_line(FileOut,r.id||': '||r.name);
end loop;
utl_file.fclose(FileOut);
end;
/
1: North America
2: South America
3: Africa / Middle East
4: Asia
5: Europe
col p heading "Parameter" format a41
col v heading "Value" format a50 word wrap
set verify off
accept parm prompt "Enter a (partial) parameter name to display (or <enter> for all):
select name p, value v from v$parameter
where name like lower('%&parm%')
order by name;
@parms
Enter a (partial) parameter name to display (or <enter> for all): utl
Parameter Value
----------------------------------------- ---------------------------
utl_file_dir *