Oracle数据库ORA-00903错误具体缘故说明_Oracle数据库_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

Oracle ORA-00903错误具体缘故说明

作者:黑客防线网安Oracle维护基地 来源:黑客防线网安Oracle维护基地 浏览次数:0

黑客防线网安网讯: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 clust...

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 NUMBERCOL2 VARCHAR2(10)

    黑客防线网安服务器维护方案本篇连接:http://www.rongsen.com.cn/show-12731-1.html
网站维护教程更新时间:2012-03-23 00:45:06  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer