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.

Can we delete data in a Hive table from spark-scala shell.

avatar

Hi,

In Hive DB I got a table named "employee" with employee id as one field,

can I set HiveContext and delete data from Hive table() like below (if not what is the best way to do)

val sqlContext = new HiveContext(sc)

sqlContext.sql("DELETE FROM employee WHERE employee_id=6")

Thanks

1 ACCEPTED SOLUTION

avatar
Master Mentor
@mohammed sarfaraz

I don't think delete can be done and not supported.

You can create a new table without employee_id=6

Please read this

Hive is not RDBMS 😉

View solution in original post

2 REPLIES 2

avatar
Master Mentor
@mohammed sarfaraz

I don't think delete can be done and not supported.

You can create a new table without employee_id=6

Please read this

Hive is not RDBMS 😉

avatar
Master Mentor

@mohammed sarfaraz are you still having issues with this? Can you accept best answer or provide your workaround?