- 使用
alter table xxx set TBLPROPERTIES ("hive.sql.jdbc.url"="xxxxx");
语句修改 hive 外部表的表属性会有如下的报错:org.apache.hadoop.hive.ql.parse.SemanticException: ALTER TABLE cannot be used for a non-native table
- 通过
show create table
可以看到CREATE EXTERNAL TABLE
开头
查看 hive 元数据
TBLPROPERTIES
中的表属性元数据都存在table_params
表中hive.sql.jdbc.url
是我的外部表里面的属性,要修改成自己的属性字段名
select TBL_ID,PARAM_VALUE from hive.table_params where PARAM_KEY='hive.sql.jdbc.url';
确认获取的值是不是唯一的,依据情况使用下面的 update 语句
update hive.table_params set PARAM_VALUE='jdbc:mysql://xxx/xxx' and TBL_ID=xx;
再次使用上面的 select 语句验证是否修改了,进入 hive 执行
show create table
查看是否更新了