Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Hadoop DDL

avatar
Explorer

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
Explorer

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