需求:
oracle 数据库有一个student表,现有一个excel表:student.xlsx,需导入oracle数据库student表中。
student表的拥有者是c##MLQ1 密码为:xxx
表结构:
打开需导入的excel表格,单击office按钮,选择另存为--其他格式
选择保存路径(置于D:\),保存类型CSV(逗号分隔)(*.csv),设置文件名为student.csv,单击保存
新建input.ctl文件(置于D:\),内容为:
load data infile ‘d:\student.csv‘ append into table student fields terminated by ‘,‘ trailing nullcols(id,name,sex,age)
说明:infile后面参数为欲导入的excel表(已转换成csv格式)路径及名称;append在表后追加;table后面跟oracle数据库中的表名称; terminated by ‘,‘表示字段分隔符;(id,name,sex,age)表示字段名称列表
同时按Windows徽标键和R键,打开运行,输入cmd,打开命令提示符,输入命令:
sqlldr userid=c##MLQ1/[email protected] control=d:\input.ctl
说明:c##MLQ1/root,为oracle数据库表student的所有者及其密码;
@netservicename为网络服务名(某一数据库的全局名称);
control是input.ctl文件名称及路径
进入oracle数据库,查询student表,excel已导入成功
原文地址:https://www.cnblogs.com/mlq2017/p/9911174.html
时间: 2024-11-09 20:14:58