如何加载含有内嵌换行符的数据,这里使用了使用非换行符的chr(10)来代替换行符,在加载数据时使用一个sql函数来完成该任务。
load data
infile *
into table dept
append
fields terminated by ','
trailing nullcols
( deptno,
dname,
loc,
comments "replace(:comments,'\\n',chr(10))"---注意函数的用法
)
begindata
10,sales,hangzhou,this is the sales\noffice in hz
20,consulting,hangzhou,this is the consulting\noffice in hz
30,accounting,hangzhou,this is the accounting\noffice in hz
40,finance,hangzhou,this is the finance\noffice in hz
查询验证。
yang@ORACL> col comments for a50
yang@ORACL> select * from dept;
DEPTNO DNAME LOC COMMENTS
---------- -------------- ------------- --------------------------------------------------
10 sales hangzhou this is the sales
office in hz
20 consulting hangzhou this is the consulting
office in hz
30 accounting hangzhou this is the accounting
office in hz
40 finance hangzhou this is the finance
office in hz
相关文章
- 11-292.7-2.8 导入、导出数据(进/出)hive表的方式
- 11-29docker下的arangodb 数据库导入导出的的shell脚本,在tar包中提供了一个协助倒入的脚本
- 11-29sqoop导入数据遇到的参数问题 ,导出–staging-table
- 11-29H2数据库的导入、导出
- 11-29Hive 数据的导入导出
- 11-29django:数据的导入和导出
- 11-29element的导入导出excel功能数据处理
- 11-29pg数据库的导入导出功能
- 11-29DBA常用命令(数据的导入和导出(即数据备份)重点
- 11-29hive的数据导入与数据导出:(本地,云hdfs,hbase),列分隔符的设置,以及hdfs上传给pig如何处理