|
|
Archives of the TeradataForum
Message Posted: Thu, 21 Apr 2005 @ 16:39:59 GMT
Subj: | | Re: DefaultCharType problem |
|
From: | | Takahashi, Takashi |
SELECT UserName, DefaultCharType,
CASE
WHEN DefaultCharType=1
THEN 'LATIN'
WHEN DefaultCharType=2
THEN 'UNICODE'
WHEN DefaultCharType=3
THEN 'KANJISIS'
WHEN DefaultCharType=4
THEN 'GRAPHIC'
WHEN DefaultCharType=5
THEN 'KANJI1'
ELSE 'UNKNOWN'
END (title 'Default Charset Name')
from dbc.users order by 1;
or:
Help Session;
And look at the value in the "Default Character Type" column.
Tak Takahashi
| |