將excel中資料從window上匯入到linux中oracle資料庫
說明:伺服器作業系統環境linux,資料庫oracle 10g,excel表在windows上
方案如下:
1、
先將abc.xls另存為abc.csv
先將abc.xls另存為abc.csv
2、
在scott使用者下建立一張表,這張表的欄位與abc.xls中的欄位一致。
create table zsx
(id number,
name varchar2(10)
);
3、
將abc.csv檔案中的欄位去掉,就是不是資料的第一行。
4、
然後在linux中建立一個insert.ctl檔案,注意用oracle使用者建立
$ vi insert.ctl (這個檔案在/home/oracle下可以找到)
5、
在insert.ctl檔案中編寫以下語句
load data
infile abc.csv
into table zsx
fields terminated by ','
(id,name)
6、
將windows上的abc.csv檔案傳到linux中,放在/home/oracle下。
7、
改變檔案abc.csv許可權及所屬組(用root使用者做)
# chown -R oracle:oinstall /home/oracle/abc.csv
8、
使用以下語句匯入:
$ sqlldr scott/tiger control=insert.ctl
9、
匯入成功後查詢結果:
select * from zsx;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29107230/viewspace-769368/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- java 從EXCEL匯入到資料庫JavaExcel資料庫
- GeoRapter工具將shapefile資料匯入到Oracle空間資料庫中APTOracle資料庫
- 將資料庫中資料匯出為excel表格資料庫Excel
- 匯入excel資源到資料庫Excel資料庫
- Oracle 資料匯入ExcelOracleExcel
- 將資料庫中資料匯入至solr索引庫資料庫Solr索引
- python將目標檢測資料匯入到指定資料庫中Python資料庫
- .NET Core使用NPOI將Excel中的資料批量匯入到MySQLExcelMySql
- Sqoop將MySQL資料匯入到hive中OOPMySqlHive
- 如何將外部資料庫 匯入到系統的SQL中資料庫SQL
- excel 匯入sqlyog資料庫ExcelSQL資料庫
- TP5.1excel匯入資料庫的程式碼?php excel如何匯入資料庫?Excel資料庫PHP
- 使用Oracle SQL Developer匯入Excel資料OracleSQLDeveloperExcel
- 如何將 EXCEL 資料寫入資料庫Excel資料庫
- Access 匯入 oracle 資料庫Oracle資料庫
- python——將excel檔案寫入mysql資料庫中PythonExcelMySql資料庫
- Flume:資料匯入到hdfs中
- 達夢資料庫如何將Excel表的資料複製到表中資料庫Excel
- SpringBoot+Mybatis-plus整合easyExcel批次匯入Excel到資料庫+匯出ExcelSpring BootMyBatisExcel資料庫
- DataX將MySql資料庫資料同步到Oracle資料庫MySql資料庫Oracle
- Python使用pymysql和xlrd2將Excel資料匯入MySQL資料庫PythonMySqlExcel資料庫
- 將資料匯出到ExcelExcel
- 如何將Excl內資料匯入資料庫?資料庫
- DataX將Oracle資料庫資料同步到達夢資料庫Oracle資料庫
- 如何將資料庫中的資料導成 excel 檔案資料庫Excel
- 從cmd中匯入.SQL檔案並建立資料庫SQL資料庫
- 厲害了!12秒將百萬資料透過EasyExcel匯入MySQL資料庫中ExcelMySql資料庫
- Excel 表匯入資料Excel
- Mysql 大資料表 資料匯入到SqlServer 中的方法MySql大資料Server
- 如何將Docker中GitLab資料備份到宿主Linux上DockerGitlabLinux
- Oracle資料匯入匯出Oracle
- Oracle 資料匯入匯出Oracle
- 資料庫 MySQL 資料匯入匯出資料庫MySql
- oracle 備份資料庫,匯出資料庫Oracle資料庫
- 匯入excel 資料時間Excel
- NCF 如何匯入Excel資料Excel
- C# 將資料寫入到Excel表格C#Excel
- 如何將kafka中的資料快速匯入Hadoop?KafkaHadoop
- EasyPoi, Excel資料的匯入匯出Excel