笔试题积累

tech2024-10-10  16

1、Linux crontab 命令格式与详细示例(推荐)

*  *  *  *  *  command

分 时 日 月 周 命令

第1列表示分钟1~59 每分钟用*或者 */1表示

第2列表示小时1~23(0表示0点)

第3列表示日期1~31

第4列表示月份1~12

第5列标识号星期0~6(0表示星期天)

第6列要运行的命令

2、Hive追加数据导入四种方式:

Hive中追加导入数据的4种方式

从本地导入: load data local inpath '/home/st.txt' (overwrite) into table student;

从Hdfs导入: load data inpath '/user/hive/warehouse/st.txt' (overwrite) into table student;

查询导入: create table student_a as select * from student;(也可以具体查询某项数据)

查询结果导入: insert (overwrite)into table student select * from student_a;

 

最新回复(0)