Hive interview questions part-5

 What are the default record and field delimiter used for hive text files?

The default record delimiter is − \n

And the filed delimiters are − \001,\002,\003

The schema is validated with the data when reading the data and not enforced when writing data.

SHOW DATABASES LIKE ‘p.*’

With the use command you fix the database on which all the subsequent hive queries will run.

There is no way you can delete the DBPROPERTY.

It sets the mapreduce jobs to strict mode.By which the queries on partitioned tables can not run without a WHERE clause. This prevents very large job running for long time.

This can be done with following query

SHOW PARTITIONS table_name PARTITION(partitioned_column=’partition_value’)

org.apache.hadoop.mapred.TextInputFormat

org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat

When we issue the command DROP TABLE IF EXISTS table_name

Hive throws an error if the table being dropped does not exist in the first place.

Comments

Popular posts from this blog

MongoDB - Data Modelling

SPARK - Deployment

SQOOP