1

我在将单个外部表指令转换为 PLSQL 过程时遇到了一些问题。特别是,这是完美运行的外部表创建指令。

create table TMP_TBL (
  id VARCHAR2(10)
)
organization external (
  TYPE ORACLE_LOADER
  default directory DATA_DIR
  access parameters (
    RECORDS DELIMITED BY NEWLINE
    fields terminated by '|'
    missing field values are null
  )
  location ('test.txt')
)
reject limit unlimited;

我正在尝试利用这个 PLSQL 过程来创建给定外部数据文件的表。这就是我从现在开始所做的事情,但是当我调用它时我仍然遇到了一些问题。

PROCEDURE CREATE_TMP_TBL(FILENAME VARCHAR2) IS
  BEGIN
    EXECUTE IMMEDIATE 'create table TMP_TBL (
      id VARCHAR2(10)
    )
    organization external (
      type oracle_loader
      default directory DATA_DIR
      access parameters (
        records delimited by newline
        fields terminated by ''|''
        missing field values are null
      )
      location ('''||FILENAME||''')
    )
    reject limit unlimited;';
  END CREATE_TMP_TBL;

使用以下命令执行该过程:

exec pkg_load.CREATE_TMP_TBL('test.txt');

它给了我这个错误:

Error report:
ORA-00911: invalid character
ORA-06512: at "PKG_LOAD", line 43
ORA-06512: at line 1
00911. 00000 -  "invalid character"
*Cause:    identifiers may not start with any ASCII character other than
           letters and numbers.  $#_ are also allowed after the first
           character.  Identifiers enclosed by doublequotes may contain
           any character other than a doublequote.  Alternative quotes
           (q'#...#') cannot use spaces, tabs, or carriage returns as
           delimiters.  For all other contexts, consult the SQL Language
           Reference Manual.
*Action:

第 43 行是过程 CREATE_TMP_TBL 的“BEGIN”编号行。

信息:

Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production
PL/SQL Release 11.2.0.2.0 - Production
"CORE   11.2.0.2.0  Production"
TNS for Linux: Version 11.2.0.2.0 - Production
NLSRTL Version 11.2.0.2.0 - Production

欢迎任何解决此问题的建议。感谢您的建议,

卡罗

4

1 回答 1

1

从此处的语句末尾删除分号:

reject limit unlimited;'; 

即更改为

reject limit unlimited';
于 2013-02-17T16:36:40.330 回答