Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Hadoop DDL

avatar
New Member

Hello -

Can you specify character column lengths when executing ddl (specifically create table statement) in Hadoop?

Is there any documentation on table datatypes?

Any input would be much appreciated.

1 ACCEPTED SOLUTION

avatar
Master Mentor
3 REPLIES 3

avatar
Master Mentor
@Avery Long

this is an extensive description of what Hive has to offer https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL

avatar
New Member

Thanks Artem!

I'm not seeing anything for specifying a length.

Example:

create table foo

(

name string(10)

)

or

create table foo

(

name string length=10

)

Something similar to able.

avatar
Master Mentor