使用者可以使用alter database命令為某個資料庫的dbproperties設定鍵-值對屬性值,來描述這個資料庫的屬性資訊。資料庫的其他元資料資訊都是不可更改的,包括資料庫名和資料庫所在的目錄位置。
hive (default)> alter database db_hive set dbproperties('createtime'='20170830');
在
hive
中檢視修改結果
hive> desc database extended db_hive;
db_name comment location owner_name owner_type parameters
db_hive hdfs://hadoop102:8020/user/hive/warehouse/db_hive.db atguigu user
大資料之Hive DDL資料定義 一
1.建立資料庫 01.建立乙個資料庫,資料庫在hdfs上的預設儲存路徑是 user hive warehouse db hive default create database db hive 02.建立乙個資料庫,指定資料庫在hdfs上存放的位置 hive default create datab...
HiveDDL資料定義 建立表
建表語法create external table if notexists table name col name data type comment col comment comment table comment partitioned by col name data type comme...
HiveDDL資料定義 資料庫操作
create database if notexists database name comment database comment location hdfs path with dbproperties property name property value,建立乙個資料庫,資料庫在hdfs...