ORA-48404: RUN or @ command has no arguments
Cause: RUN and @ commands need users to input script filename
Action: Input script filename after RUN and @ commands
ORA-48404: RUN or @ command has no arguments
这是一个Oracle数据库错误,表明错误地调用了RUN或@命令,而没有提供任何参数。有关该错误的官方解释如下:
“表示RUN 或 @ 命令被错误地调用,即尝试执行它们,但没有提供参数。”
这个错误的一个常见的案例是如果用户像这样编写Oracle命令:
SQL > run;
而不是
SQL > run script_name.sql;
这将导致该ORA-48404错误。
1.确保您使用正确的参数调用RUN或@命令。
2.如果RUN或@命令有多个参数,请确保参数之间存在空格,且括号不能英文半角,应使用中文全角。
3.如果您仍然无法解决此问题,请尝试重新启动数据库。