本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sichunli_030
- sam123456gz
- 龙儿筝
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
- lich0079
最新文章列表
Oracle - An Managing Lob examples
I met a request: I need to read files from Computer File System and insert this readed files into Oracle database as Clob, and need to complete this through PL/SQL only.
To describ this request more c ...
利用SQL*Loader将 Excel 数据导出到 Oracle 数据库中
实现目的:往oracle数据库中,插入excel文件中的数据
实现步骤:
1、打开MicroSoft Excel 2000
2、文件(F)→新建(N)→工作簿→
3、输入数据后,存盘为test.xls ...
oracle将一行拆分为多行
客户的业务涉及大量的图片信息,之前这些图片信息只在数据库里存着路径,图片都是存在文件服务器上,现在要做数据库迁移,需要把这些图片都存放到数据库里。坑爹的是,图片在数据库中的存放路径SQL*LOADER不能直接加载,需要进行行记录拆分。\01\01--0002\04-01-01-0002-003-<0001-0007>.jpg;\01\01--0003\04-01-01-0003-007- ...
SQL*LOADER和外部表加载
最近一直在用SQL*LOADER加载数据,用外部表也可以实现,今天想测试下外部表加载数据和SQL*LOADER加载1029027条记录的性能。首先创建一张外部表。create table enmo(name char(10),lname char(10),xname varchar2(50),ydoss varchar2(20),doss varchar2(50),btime varchar2(50 ...
linux oracle利用 SQL*Loader数据导入文件数据
一:SQL*Loader简介
SQL*Loader:使用sqlldr将非oracle数据库数据导入进oracle数据库。
SQLLAR基本语法:
SQLLDR keyword=value[ ,keword=value]
例如: $sqlldr scott/oracle contr ...