Oracle ORA-00903錯誤具體原因分析

來源:互聯網
上載者:User

 ORA-00903 invalid table name

  ORA-00903:無效的表名

  Cause A table or cluster name is invalid or does not exist. This
message is also issued if an invalid cluster name or no cluster name is
specified in an ALTER CLUSTER or DROP CLUSTER statement.

  Action Check spelling. A valid table name or cluster name must
begin with a letter and may contain only alphanumeric characters and
the special characters $, _, and #. The name must be less than or equal
to 30 characters and cannot be a reserved word.

  原因:表名或簇名不存在或無效,當運行ALTER CLUSTER 或 DROP CLUSTER語句時,會出現此錯誤資訊。

  方案:檢查拼字是否正確。一個有效表名或簇名必須以字母開頭,只含有字母或數字,不能超過30個字元,可以包含一些特殊字元$, _, #。表名或簇名不能是關鍵字。

  案例一: 使用 DBMS_SQL包執行DDL語句

  The DBMS_SQL package can be used to execute DDL statements directly from PL/SQL.

  這是一個建立一個表的過程的例子。該過程有兩個參數:表名和欄位及其類型的列表。

CREATE OR REPLACE PROCEDURE ddlproc (tablename varchar2, cols varchar2) AS
cursor1 INTEGER;
BEGIN
cursor1 := dbms_sql.open_cursor;
dbms_sql.parse(cursor1, 'CREATE TABLE ' || tablename || '
( ' || cols || ' )', dbms_sql.v7);
dbms_sql.close_cursor(cursor1);
end;
/
SQL> execute ddlproc ('MYTABLE','COL1 NUMBER, COL2 VARCHAR2(10)');
PL/SQL procedure successfully completed.
SQL> desc mytable;
Name Null? Type
------------------------------- -------- ----
COL1 NUMBER
COL2 VARCHAR2(10)

  注意:DDL語句是由Parese命令執行的。因此,不能對DDL語句使用bind變數,否則你就會受到一個錯誤資訊。下面的在DDL語句中使用bind變數的例子是錯誤的。

**** Incorrect Example ****
CREATE OR REPLACE PROCEDURE ddlproc (tablename VARCHAR2,
colname VARCHAR2,
coltype VARCHAR2) AS
cursor1 INTEGER;
ignore INTEGER;
BEGIN
cursor1 := dbms_sql.open_cursor;
dbms_sql.parse(cursor1, 'CREATE TABLE :x1 (:y1 :z1)', dbms_sql.v7);
dbms_sql.bind_variable(cursor1, ':x1', tablename);
dbms_sql.bind_variable(cursor1, ':y1', colname);
dbms_sql.bind_variable(cursor1, ':z1', coltype);
ignore := dbms_sql.execute(cursor1);
dbms_sql.close_cursor(cursor1);
end;
/

雖然在過程建立時,沒有錯誤資訊。但在運行時,你將得到錯誤資訊"ORA-00903: invalid table name" 。

  SQL> execute ddlproc ('MYTABLE', 'COL1', 'NUMBER');

  begin ddlproc ('MYTABLE', 'COL1', 'NUMBER'); end;

  *

  ERROR at line 1:

  ORA-00903: invalid table name

  ORA-06512: at "SYS.DBMS_SYS_SQL", line 239

  ORA-06512: at "SYS.DBMS_SQL", line 25

  ORA-06512: at "SCOTT.DDLPROC", line 8

  ORA-06512: at line 1

  案例二:SQL*Plus 中的觸發器錯誤

  你是如何發現dbms_error_code 數位呢?我如何才能在SQL*Plus 中顯示Oracle錯誤資訊描述呢?

  第1行錯誤:

  ORA-04098: 'SYSTEM.LOG_ERRORS_TRIG'觸發器無效,並且無法再次生效

  ORA-00903: 無效表明

  ORA錯誤可以在錯誤資訊指南(technet.oracle.com上可以找到完全的文檔)中找到。你列出的錯誤資訊說的是SYSTEM
ID擁有的名為LOG_ERRORS_TRIG的觸發器無效了,因為觸發器中參考了一個無效的表名。你需要找出觸發器代碼並從那裡開始繼續。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.