追梦吧 发表于 2013-11-4 23:31:40

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

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

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

Table created.

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


请各位大神紧急帮助一下。

xiucai 发表于 2013-11-5 17:42:40

虽然不是很明白,但是还是帮你顶顶~~~

lnwf5188588 发表于 2013-11-8 16:13:40

检查一下你的目录权限和文件
页: [1]
查看完整版本: 紧急求助《创建外部表的问题》