• Home
  • Algorithms
  • Java
  • Hive
  • Learn Java
  • Hadoop
  • OrientDB
  • Database
  • Others
YouTube Twitter RSS
My IT Learnings
Posts related to computer science, algorithms, software development, databases etc
 
Skip to content
  • Home
  • Algorithms
  • Java
  • Hive
  • Learn Java
  • Hadoop
  • OrientDB
  • Database
  • Others
Posts tagged "create table"

Tag Archives: create table

Creating Hive Table Partitioned by Multiple Columns and Importing Data

rajesh • March 11, 2016bigdata bigdata, create table, hadoop, hive, partitioning
3

We will see how to create a Hive table partitioned by multiple columns and how to import data into the table. Partitioning We can use partitioning feature of Hive to divide a table into different partitions. Each partition of a table is associated with a particular value(s) of partition column(s).…

Continue reading

Creating External Hive table and importing data

rajesh • March 9, 2016bigdata bigdata, create table, external, hive
0

We will see how to create an external table in Hive and how to import data into the table. External Table External tables in Hive do not store data for the table in the hive warehouse directory. External table in Hive stores only the metadata about the table in the…

Continue reading

Creating Partitioned Hive table and importing data

rajesh • March 9, 2016bigdata create table, hadoop, hdfs, hive, partitioning
4

We will see how to create a partitioned table in Hive and how to import data into the table. Partitioning We can use partitioning feature of Hive to divide a table into different partitions. Each partition of a table is associated with a particular value(s) of partition column(s). Partitioning allows…

Continue reading

Creating Hive table using ORC format and importing data

rajesh • February 2, 2016bigdata bigdata, create table, hadoop, hive, load data, orc
0

We will see how to create a table in Hive using ORC format and how to import data into the table. ORC format ORC (Optimized Row Columnar) file format provides a highly efficient way to store Hive data. Using ORC format  improves performance when reading, writing, and processing data in…

Continue reading

Creating Hive table using SEQUENCEFILE format and importing data

rajesh • January 28, 2016bigdata bigdata, create table, hadoop, hive, load data, sequencefile
0

We will see how to create a table in Hive using SEQUENCEFILE format and how to import data into the table. Create table CREATE TABLE Employee( ID BIGINT, NAME STRING, AGE INT, SALARY BIGINT ) COMMENT ‘This is Employee table stored as sequencefile’ ROW FORMAT DELIMITED FIELDS TERMINATED BY ‘,’…

Continue reading

Creating Hive table using TEXTFILE format and importing data

rajesh • January 28, 2016bigdata bigdata, create table, hadoop, hive, load data
2

We will see how to create a table in Hive using TEXTFILE format and how to import data into the table. TEXTFILE Textfile format stores data as plain text files. Textfile format enables rapid development due to its simplicity but other file formats like ORC are much better when it comes…

Continue reading

  • YouTube Twitter RSS
  • Archives

    • August 2016 (3)
    • July 2016 (3)
    • May 2016 (3)
    • April 2016 (2)
    • March 2016 (30)
    • February 2016 (2)
    • January 2016 (5)
    • December 2015 (3)
    • November 2015 (4)
    • October 2015 (6)
  • Categories

    • algorithms (5)
    • bigdata (34)
    • computer science (3)
    • database (7)
    • eclipse (1)
    • hadoop (3)
    • java (8)
    • maven (1)
  • Tags

    algorithms ArrayList base64 bfs bigdata binary search BlockingQueue bucketing complex data type consumer create table database data structures data types eclipse encoding external graph hadoop hdfs hive IN operator insert java jdbc jsch load data maven metastore mysql oracle orc partitioning performance producer remote script select sequencefile sql sqlldr ssh ssh2 stack unicode update
  • Home
  • Algorithms
  • Java
  • Hive
  • Learn Java
  • Hadoop
  • OrientDB
  • Database
  • Others
Powered by Nirvana & WordPress.
YouTube Twitter RSS