208.Prepare data for Export
Command to launch hive connecting to the specified database hive –database training_sqoop_retail Command to get the list of tables in database SHOW tables; Command to get meta-data on tables DESCRIBE orders; DESCRIBE order_items; Command to preview the data in tables SELECT * FROM orders LIMIT 10; SELECT * FROM order_items LIMIT 10; Command to count …