neeraj
neeraj

Reputation: 900

How to drop system tables in phoenix

Need to drop system table in phoenix.

SYSTEM.CATALOG & SYSTEM.SEQUENCE

drop table SYSTEM.CATALOG;

Table undefined. tableName=SYSTEM.CATALOG 

select * from SYSTEM.CATALOG is working

Also not able to drop from habse. (Saying table not disabled exception)

Upvotes: 0

Views: 3000

Answers (1)

haosdent
haosdent

Reputation: 1035

You could drop SYSTEM.CATALOG in HBase shell.

Upvotes: 1

Related Questions