查詢外部表出現KUP-4040錯誤

yangtingkun發表於2012-11-24

在執行ORACLE_LOADER型別的外部表查詢時出現這個錯誤。

[@more@]

資料庫的情況比較複雜,簡單描述一下。資料庫是安裝在作業系統oracle使用者下,預設組為oinstall,當前使用的是作業系統使用者tingkun.yang,同樣是oinstall組,因此當前使用者可以用SYSDBA身份登入資料庫。

以當前使用者tingkun.yang執行sqlplus連線資料庫,建立目錄和外部表,在讀取外部表時報錯:

[tingkun.yang@enmoteam2 ~]$ id
uid=505(tingkun.yang) gid=501(oinstall) groups=501(oinstall),502(dba)
[tingkun.yang@enmoteam2 ~]$ ps -ef|grep lgwr
oracle 1552 1 0 Sep07 ? 00:04:14 ora_lgwr_enmot2
505 28312 28185 0 22:52 pts/0 00:00:00 grep lgwr
[tingkun.yang@enmoteam2 ~]$ sqlplus olasuser/olasuser

SQL*Plus: Release 11.2.0.3.0 Production on Sat Nov 24 22:53:06 2012

Copyright (c) 1982, 2011, Oracle. All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> create directory d_alert as '/home/oracle/sqlldr';

Directory created.

SQL> create table t_alert
2 (text varchar2(4000))
3 organization external
4 (type oracle_loader
5 default directory d_alert
6 access parameters
7 (records delimited by newline
8 fields (text (1:255) char))
9 location ('alert_enmot2.log'));

Table created.

SQL> select * from t_alert where rownum = 1;
select * from t_alert where rownum = 1
*
ERROR at line 1:
ORA-29913: error in executing ODCIEXTTABLEOPEN callout
ORA-29400: data cartridge error
KUP-04040: file alert_enmot2.log in D_ALERT not found

查詢MOS發現所有的已知問題都和當前的現象不同,該檔案已經存在於指定的目錄下,甚至在這個目錄下,錯誤日誌已經生成:

[oracle@enmoteam2 sqlldr]$ pwd
/home/oracle/sqlldr
[oracle@enmoteam2 sqlldr]$ ls -l
total 664
-rw-rw-rw- 1 oracle oinstall 674964 Nov 22 14:06 alert_enmot2.log
-rw-r--r-- 1 oracle oinstall 95 Nov 24 22:54 T_ALERT_28321.log
[oracle@enmoteam2 sqlldr]$ more T_ALERT_28321.log


LOG file opened at 11/24/12 22:54:52

KUP-04040: file alert_enmot2.log in D_ALERT not found

經過多次測試發現,如果使用oracle使用者啟動sqlplus,則可以讀取t_alert表:

[oracle@enmoteam2 ~]$ id
uid=502(oracle) gid=501(oinstall) groups=501(oinstall),502(dba),506(asmdba)
[oracle@enmoteam2 ~]$ sqlplus olasuser/olasuser

SQL*Plus: Release 11.2.0.3.0 Production on Sat Nov 24 22:58:57 2012

Copyright (c) 1982, 2011, Oracle. All rights reserved.

Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> select * from t_alert where rownum = 1;

TEXT
----------------------------------------------------
Fri Aug 10 13:39:20 2012

一直認為,這種DIRECTORY的讀取,使用的是oracle使用者的身份和許可權,和登入的作業系統使用者無關。沒有想到,Oracle是根據作業系統使用者是否有許可權訪問這個檔案作為外部表訪問的條件。但是外部表的日誌並沒有受許可權的控制而已經產生了。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4227/viewspace-1060811/,如需轉載,請註明出處,否則將追究法律責任。

相關文章