Skip to content

Instantly share code, notes, and snippets.

View sudheer-k-bhat's full-sized avatar

Sudheer Keshav Bhat sudheer-k-bhat

View GitHub Profile
@sudheer-k-bhat
sudheer-k-bhat / hive.md
Created February 20, 2021 05:18
Basic Hive commands

Working examples

Create table

hive> create table categories(
    category_id int,
    category_department_id int,
    category_name varchar(45))
    row format delimited
    fields terminated by ','
 stored as textfile;
@sudheer-k-bhat
sudheer-k-bhat / sqoop.md
Created January 29, 2021 14:36
Sqoop commands

DB prep

sudo mysql --defaults-file=/etc/mysql/debian.cnf
create database db1;
@sudheer-k-bhat
sudheer-k-bhat / ffprobe samples
Last active July 26, 2023 14:13
ffprobe samples
placeholder