Datatype for large UNICODE string storage

Поиск
Список
Период
Сортировка
От Andy Hallam
Тема Datatype for large UNICODE string storage
Дата
Msg-id 9p9psi$29ev$1@news.tht.net
обсуждение исходный текст
Список pgsql-general
Could someone out there tell me what datatype to use for storing large
amounts of unicode string data in PostgreSQL?

I.e :

In SQL SERVER I would use :
CREATE TABLE BigText
(
    MyID NVARCHAR(10),
    MyText NTEXT
)

In ORACLE I would use :
CREATE TABLE BigText
(
    MyID NVARCHAR2(10),
    MyText NCLOB
)

In DB2 I would use :
CREATE TABLE BigText
(
    MyID VARGRAPHIC(10),
    MyText DBCLOB(1M)
)

In PostgreSQL I would use :
CREATE TABLE BigText
(
    MyID NCHAR VARYING(10),
    MyText ??????????????
)

The maximum I would need to store is around 1M.

Thanks in advance for any help given.

Andy.
ahm@exel.co.uk




В списке pgsql-general по дате отправления:

Предыдущее
От: "Andy Hallam"
Дата:
Сообщение: Re: CREATION OF PRIMARY KEYS
Следующее
От: "Cary Lewis"
Дата:
Сообщение: windows ce version of postgresql