Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

How to grant permissions on Hive dummy database/dummy table

avatar
New Member

I received the following error using date functions in Hive. How are are permissions granted on dummy database/dummy table?

0:
jdbc:hive2://xxx:xxx,> SELECT DATE_ADD('2017-12-21', 1);

Error:
Error while compiling statement: FAILED: HiveAccessControlException Permission denied: user [xxx] does
not have [SELECT] privilege on [_dummy_database/_dummy_table]
(state=42000,code=40000)
1 ACCEPTED SOLUTION

avatar
@Carol Elliott

You can grant workaround by creating Ranger policy on _dummy_database. Ranger doesn't really check the database, just grant full access on _dummy_database to all. Guess you are hitting the same HIVE-11498 bug which I have already experienced.

Hope this helps you.

View solution in original post

2 REPLIES 2

avatar
@Carol Elliott

You can grant workaround by creating Ranger policy on _dummy_database. Ranger doesn't really check the database, just grant full access on _dummy_database to all. Guess you are hitting the same HIVE-11498 bug which I have already experienced.

Hope this helps you.

avatar
New Member

This worked for us. Thank you, @Sridhar Reddy.