REM REM DBAToolZ NOTE: REM This script was obtained from DBAToolZ.com REM It's configured to work with SQL Directory (SQLDIR). REM SQLDIR is a utility that allows easy organization and REM execution of SQL*Plus scripts using user-friendly menu. REM Visit DBAToolZ.com for more details and free SQL scripts. REM REM REM File: REM u_ascii.sql REM REM UTIL REM REM Author: REM ?? REM REM Purpose: REM REM Prints ASCII table REM REM REM Usage: REM u_ascii.sql REM REM Example: REM u_ascii.sql REM REM REM History: REM 01-01-1998 VMOGILEV Added to DBATOOLZ library REM REM 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; /