Quantcast
Channel: Simplilearn Community
Viewing all articles
Browse latest Browse all 50081

Using DUMP Command in PIG

$
0
0
Hi,

I am using the DUMP command in PIG in the HUE but its not giving me any output dump.

My Code -

DAILY_PRICES = LOAD '/user/39f9875bf4f8682d5ea29ffe256804/NYSE_daily_prices_A.csv' USING PigStorage(',')
AS (exchange:chararray, symbol:chararray, date:chararray,
open:float, high:float, low:float, close:float, volume:int, adj_close:float);
DESCRIBE DAILY_PRICES;
LIMIT_TABLE = LIMIT DAILY_PRICES 100;
DESCRIBE LIMIT_TABLE;
DUMP LIMIT_TABLE;

Viewing all articles
Browse latest Browse all 50081

Trending Articles