Load Excel data sheet to Oracle database(将 Excel 数据表加载到 Oracle 数据库)
问题描述
我正在寻找一个免费工具来将 Excel 数据表加载到 Oracle 数据库中.我尝试了 Oracle SQL 开发人员,但它不断抛出 NullPointerException.有什么想法吗?
I am looking for a free tool to load Excel data sheet into an Oracle database. I tried the Oracle SQL developer, but it keeps throwing a NullPointerException. Any ideas?
推荐答案
Excel -> CSV -> Oracle
Excel -> CSV -> Oracle
将 Excel 电子表格保存为文件类型CSV"(逗号分隔值).
Save the Excel spreadsheet as file type 'CSV' (Comma-Separated Values).
将 .csv 文件传输到 Oracle 服务器.
Transfer the .csv file to the Oracle server.
创建 Oracle 表,使用 SQL CREATE TABLE
语句定义表的列长度和类型.
Create the Oracle table, using the SQL CREATE TABLE
statement to define the table's column lengths and types.
使用 sqlload 将 .csv 文件加载到 Oracle 表中.像这样创建一个sqlload控制文件:
Use sqlload to load the .csv file into the Oracle table. Create a sqlload control file like this:
load data
infile theFile.csv
replace
into table theTable
fields terminated by ','
(x,y,z)
调用 sqlload 将 .csv 文件读入新表,为 .csv 文件中的每一行在表中创建一行.这是作为 Unix 命令完成的:
Invoke sqlload to read the .csv file into the new table, creating one row in the table for each line in the .csv file. This is done as a Unix command:
% sqlload userid=username/password control=<filename.ctl> log=<filename>.log
或
如果您只想要一个工具,请使用 QuickLoad
If you just want a tool, use QuickLoad
这篇关于将 Excel 数据表加载到 Oracle 数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将 Excel 数据表加载到 Oracle 数据库
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- SQL 临时表问题 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01