紧急求助《创建外部表的问题》

本帖最后由 追梦吧 于 2013-11-4 23:33 编辑

一、外部表创建成功了
SQL> create table test_ext2
  2  (
  3  deptno number(2),
  4  dname  varchar2(14),
  5  loc varchar2(13)
  6  )
  7  organization external
  8  (
  9  type oracle_loader
10  default directory ext_dir
11  access parameters
12  (
13  records delimited by newline
14  badfile 'test.bad'
15  discardfile 'test.dis'
16  logfile 'test.log'
17  fields terminated by ','
18  missing field values are null
19  )
20  location ('dept.load')
21  ) ;

Table created.

二、在系统里查不到数据呢?
[oracle@rhel5 ext_dir]$ pwd
/home/oracle/ext_dir
[oracle@rhel5 ext_dir]$ ls
[oracle@rhel5 ext_dir]$
[oracle@rhel5 ext_dir]$


请各位大神紧急帮助一下。
标签: 暂无标签
追梦吧

写了 2 篇文章,拥有财富 62,被 1 人关注

转播转播 分享分享 分享淘帖
回复

使用道具

P4 | 发表于 2013-11-5 17:42:40
虽然不是很明白,但是还是帮你顶顶~~~
回复

使用道具

P4 | 发表于 2013-11-8 16:13:40
检查一下你的目录权限和文件
回复

使用道具

您需要登录后才可以回帖 登录 | 加入社区

本版积分规则

意见
反馈