Home > Database > Mysql Tutorial > oracle批量插入数据

oracle批量插入数据

WBOY
Release: 2016-06-07 15:08:19
Original
1893 people have browsed it

有一次开发一个功能,需要导入别人提供的几万条数据, 数据在一个*.sql文件中,大概有8万条数据 insert into testtable(id,name) values(1,'1') -----8万多条 按照平常习惯,直接把所有insert into 语句拷贝到一个pl/sql新开的sql窗口中执行,结果直接卡死了

有一次开发一个功能,需要导入别人提供的几万条数据,

数据在一个*.sql文件中,大概有8万条数据

insert into testtable(id,name) values(1,'1')   -----8万多条

按照平常习惯,直接把所有insert into 语句拷贝到一个pl/sql新开的sql窗口中执行,结果直接卡死了。

然后打开pl/sql--->File--->Open--->Sql Script直接执行*.sql文件进行导入,结果,依然卡死。

后面经同事帮助,用另外一个方法解决了这个问题:

打开pl/sql--->File--->New---->Command Window--->输入@,然后敲Enter键,选择要导入的数据所在的文件(一般是*.sql文件)---执行成功

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template