Options
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
Rising Star
Created on 03-08-2018 09:05 PM - edited 08-17-2019 08:30 AM
A Hive Database can contain both transactional and non transactional table. Hence, if we are doing some quick checks to determine if the table is ACID enabled, please run the following command.
# hive -e "describe extended <Database>.<tablename>;" | grep "transactional=true"
If you get an output with the string that you grep for, then the table is transactional.
Example: #hive -e "describe extended default.hello_acid;" | grep "transactional=true"
7,037 Views