Oracle:导入 CSV 文件

Oracle: Import CSV file(Oracle:导入 CSV 文件)
本文介绍了Oracle:导入 CSV 文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经搜索了一段时间,但似乎无法找到答案,所以这里...

I've been searching for a while now but can't seem to find answers so here goes...

我有一个 CSV 文件,我想将其导入到 Oracle (9i/10i) 中的表中.

I've got a CSV file that I want to import into a table in Oracle (9i/10i).

稍后我打算将此表用作其他用途的查找.

Later on I plan to use this table as a lookup for another use.

这实际上是我正在研究的一种解决方法,因为不可能使用包含超过 1000 个值的 IN 子句进行查询.

This is actually a workaround I'm working on since the fact that querying using the IN clause with more that 1000 values is not possible.

这是如何使用 SQLPLUS 完成的?

How is this done using SQLPLUS?

感谢您的时间!:)

推荐答案

SQL Loader 帮助将 csv 文件加载到表中:SQL*Loader

SQL Loader helps load csv files into tables: SQL*Loader

如果你只想要 sqlplus,那么它会变得有点复杂.您需要找到 sqlloader 脚本和 csv 文件,然后运行 ​​sqlldr 命令.

If you want sqlplus only, then it gets a bit complicated. You need to locate your sqlloader script and csv file, then run the sqlldr command.

这篇关于Oracle:导入 CSV 文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

SQL to Generate Periodic Snapshots from Transactions Table(用于从事务表生成定期快照的SQL)
MyBatis support for multiple databases(MyBatis支持多个数据库)
Oracle 12c SQL: Missing column Headers in result(Oracle 12c SQL:结果中缺少列标题)
SQL query to find the number of customers who shopped for 3 consecutive days in month of January 2020(查询2020年1月连续购物3天的客户数量)
How to get top 10 data weekly (This week, Previous week, Last month, 2 months ago, 3 month ago)(如何每周获取前十大数据(本周、前一周、上个月、2个月前、3个月前))
Select the latest record for an Id per day - Oracle pl sql(选择每天ID的最新记录-Oracle pl SQL)