Create an insert-only transactional table
You can create a transactional table using any storage format if you do not require update and delete capability.
In this task, you create an insert-only transactional table for storing text.
You can create a transactional table using any storage format if you do not require update and delete capability.
In this task, you create an insert-only transactional table for storing text.
[vagrant@c7401]# hive
CREATE TABLE T2(a int, b int)
TBLPROPERTIES ('transactional_properties'='insert_only');