|
This script prints the ascii table
whole.
May be usefull.
Bunyamin
set serveroutput on size 10240 declare i number; j number; k number; begin for i in 2..15 loop for j in 1..16 loop k:=i*16+j; dbms_output.put((to_char(k,'000'))||':'||chr(k)||' '); if k mod 8 = 0 then dbms_output.put_line(''); end if; end loop; end loop; end;
|
Title: RE: tab ascii value
- tab ascii value Tatireddy, Shrinivas (MED, Keane)
- RE: tab ascii value Hallas John
- RE: tab ascii value DBarbour
- RE: tab ascii value Jacques Kilchoer
- Re: tab ascii value Bryan S
- RE: tab ascii value Jacques Kilchoer
- Bunyamin K. Karadeniz
