Thread: OWC Sunday 3/11
View Single Post
  #3  
Old 03-10-2007, 08:19 PM
Technochick's Avatar
Technochick Technochick is offline
Member
 
Join Date: Jun 2006
Location: Gulfport, FL
Posts: 70
Default

So far it's just a friend and I.... and he may bail because of a death in the family. I'm planning on leaving about 10:00am ~ ish. I'll probably get a 2 hour cable pass??


Gas money, No way!!! I'm going anyway.


I'll send you a pm with my phone number.
__________________
(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