- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Hadoop DDL
- Labels:
-
Apache Hadoop
Created on ‎02-17-2016 05:46 PM - edited ‎09-16-2022 03:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
Created ‎02-17-2016 06:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
this is an extensive description of what Hive has to offer https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL
Created ‎02-17-2016 06:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
this is an extensive description of what Hive has to offer https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL
Created ‎02-17-2016 06:14 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
Created ‎02-17-2016 06:16 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Avery Long https://dzone.com/articles/hive-data-types actually a good description for string data types including length here http://hadooptutorial.info/hive-data-types-examples/#String_Data_Types
