Thread: Noooooob!
View Single Post
  #2  
Old 02-23-2007, 12:14 PM
Technochick's Avatar
Technochick Technochick is offline
Member
 
Join Date: Jun 2006
Location: Gulfport, FL
Posts: 70
Default

Wow, there's nobody willing to help???

I'd offer, but I'm just a n00b myself and know absolutely nothing.


I'd suggest heading out to the beach and talking to the guys. It should all come back to you while you watch them set up, launch and ride.
__________________
(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