如何用sqlload导字段类型是number的

 我来答
yuncia
推荐于2016-04-30 · 超过24用户采纳过TA的回答
知道答主
回答量:78
采纳率:0%
帮助的人:58.3万
展开全部
load data
infile 'result.csv '
into table resultxt
(resultid number load data
infile 'result.csv '
into table resultxt
(resultid number terminated by ', ',
website char terminated by ', ',
ipport char terminated by ', ',
status char terminated by whitespace)
直接在ctl文件里面的字段后面标上number即可,否则自动转为Char。
追问
这样写问什么报错啊SQL*Loader-350: Syntax error at line 13.
Expecting valid column specification, "," or ")", found "number".
card_type number terminated by ', ',
追答
load   data 
infile 'result.csv '
into table resultxt
(resultid number load data
infile 'result.csv '
into table resultxt
FIELDS TERMINATED BY ','
(resultid number , website char ,ipport char , status char )
使用这个格式试一试
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
zhubin_wyn
2011-11-04 · TA获得超过175个赞
知道小有建树答主
回答量:216
采纳率:100%
帮助的人:256万
展开全部
你先查询数据类型为number的,语句如下,你参考参考:
SELECT syscolumns.name FROM sysobjects INNER JOIN
syscolumns ON sysobjects.id = syscolumns.id INNER JOIN
systypes ON syscolumns.xtype = systypes.xtype where systypes.name ='number'
and sysobjects.name = '表名'
--如果还要模糊查询字段名,加上下面代码
-- and syscolumns.name like '%字段%'
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式