Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: What is codepoint of character set?
Laurenz Albe wrote:
> nirav <shivam71_at_gmail.com> wrote:
>
>>I can not understand meaning of a sentance, present in Oracle concepts >>manual..In the chapter of Native Datatypes, it says: >> >>The length semantics of character datatypes can be measured in bytes or >>characters.
>>Character semantics treat strings as a sequence of characters. "A >>character is technically a codepoint of the database character set." >> >>Here the last sentence : "A character is technically a codepoint of the >>database character set." is not clear to me..can u pl. explain what is >>the meaning of codepoint of db char. set?
You might also want to build the following table and test it:
CREATE TABLE tnorm (
somecol VARCHAR2(20));
CREATE TABLE tbyte (
somecol VARCHAR2(20 BYTE));
CREATE TABLE tchar (
somecol VARCHAR2(20 CHAR));
desc tnorm
desc tbyte
desc tchar
-- Daniel A. Morgan http://www.psoug.org damorgan_at_x.washington.edu (replace x with u to respond)Received on Thu Dec 15 2005 - 15:13:10 CST
![]() |
![]() |