View Single Post
  #12  
Old 03-03-2007, 06:50 PM
Technochick's Avatar
Technochick Technochick is offline
Member
 
Join Date: Jun 2006
Location: Gulfport, FL
Posts: 70
Default

Quote:
Originally Posted by Skyway Scott View Post
That was sweet. Weekends are rockin' 'round here.
Oh, just rub it in :P

I had a decent day at OWC and I learned a lot! Including a move called the face plant ~ LOL!
__________________
(it's a script to create an ASCII chart)

SET SERVEROUTPUT ON SIZE 1000000
DECLARE
y number := 31;
asciiname VARCHAR2(30);
BEGIN
FOR x in 31..126
LOOP
select chr(y)
INTO asciiname
FROM dual;
dbms_output.put_line('chr('||Y||') = '||' '||asciiname);
Y := y + 1;
END LOOP;
END;
/
Reply With Quote