Reg: ASCII codes & Characters view. [message #10932] |
Tue, 24 February 2004 23:10  |
BABU SRSB
Messages: 42 Registered: June 2002
|
Member |
|
|
Hi all,
Is that any ORACLE inbuild view have all(255) the ASCII codes & characters information. If it is there, then i can fire simple SQL Query to get the corresponding information.
Please tell me, if any body knows this one.
And please don't mention any links, because my side most of the sites are restricted including otn.oracle.com.
Thanks in Advance.
Regards,
Babu SRSB.
|
|
|
Re: Reg: ASCII codes & Characters view. [message #10946 is a reply to message #10932] |
Wed, 25 February 2004 05:25   |
ashok
Messages: 32 Registered: July 2000
|
Member |
|
|
See if this helps ... You will not be able to see the characters if want . But able to work with that .
set serveroutput on size 200000
begin
for i in 1..255
loop
dbms_output.put_line('Acsii Number ::'||i||'Character::'|| chr(i));
end loop;
end;
/
|
|
|
|
|
|
Re: Reg: ASCII codes & Characters view. [message #10978 is a reply to message #10974] |
Thu, 26 February 2004 18:21  |
BABU SRSB
Messages: 42 Registered: June 2002
|
Member |
|
|
Hi,
Just to know the features only.
Nothing serious.
I saw some 198 inbuilt views start with 'V$' are there.
I know about very few views.
To know the remaining only these trails and also to use in PL/SQL.
I have very limited resourse is there to getting knowledge. One of that is this forum. I am learning lot from this.
Thanks to thre forum and many more to all participents.
Regards,
Babu SRSB.
|
|
|