oracle10g_sqlldr

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 15:15 点击:

sqlldr_oracle10g_redhat5.4
sqlldr
sqlldr is used for inputing data into oracle database.we call it datapumb.
how to commplete the procedure in the oracle10g ?
the following statement show you .
1)
#su - oracle
$cd               
$vim test_1.ctl
input the information below
############begin##############
LOAD DATA
/*characterset ZHS16GBK*/ it is comment
INFILE 'test_1.dat'
DISCARDFILE 'test_1.dis'
append
INTO table hr.testtable
TRAILING NULLCOLS
(
 date1   position(1:8)  date(8) "YYYYMMDD" terminated by ',',
 phonenumber position(10)  decimal external terminated by ',',
 describe char terminated by whitespace
)
#############end################
this procedure describe the three basic data types.we can expand it to satisfy the complex report forms.
2)
we must make sure that infile and that table exist.
$sqlplus /nolog
$hr/**
$sql> create table testtable ( date1 date,
                          phonenumber number(15),
                          describe varchar2(30) );
$sql> exit
$vim infile test_1.dat 
input your data must obey the rule.
##############begin################
20110908,13254654582,success
##############end##################
it is just a test .
make sure the char position.we must care the format.
3)
$sqlldr hr/** control=test_1.ctl
check the home directory.
 
作者“redhat6_push_experience”

    相关新闻>>

      发表评论
      请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
      用户名: 验证码:点击我更换图片
      最新评论 更多>>

      推荐热点

      • Table函数使用简介
      • Oracle数据库Constraint约束的常用操作及异常处理
      • Bulk Collect性能分析(zz)
      • export/import的使用
      • OCP043第十五讲 Database Security
      • ORACLE10gr2数据导入MySQL方案
      • oracle 让sys用户可以使用isqlplus
      • 在oracle数据库下使用iSQL*Plus DBA访问数据库
      • Oracle行列转换小结
      网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
      Copyright © 2008-2015 计算机技术学习交流网. 版权所有

      豫ICP备11007008号-1