Member since
12-16-2015
6
Posts
1
Kudos Received
3
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
4502 | 11-13-2017 02:56 PM | |
9482 | 11-10-2017 01:34 PM | |
2638 | 11-08-2017 11:47 AM |
11-09-2017
01:45 PM
@Ravi teja You can get this information from the metastore database: hive=> SELECT "TBL_NAME", "COLUMN_NAME", "TYPE_NAME" FROM "TBLS" , "COLUMNS_V2" WHERE "TBL_ID"="CD_ID" UNION SELECT "TBL_NAME", "PKEY_NAME", "PKEY_TYPE" FROM "PARTITION_KEYS" p , "TBLS" t WHERE p."TBL_ID"=t."TBL_ID" ORDER BY "TBL_NAME";
TBL_NAME | COLUMN_NAME | TYPE_NAME
------------+-------------+-----------
tableA | aaa | string
tableA | bbb | string
tableB | foo | string
tableB | bar | int
tableC | cola | string
tableD | colb | string
(6 rows)
... View more
11-15-2017
07:28 AM
Hi all! Where is I
can find information about limitation Hadoop Distcp ? (transactional / non-transactional etc )
... View more