SP2-0734:未知命令开始 "lsnrctl st..." - 忽略行的其余部分。错误 17002
SP2-0734: unknown command beginning "lsnrctl st..." - rest of line ignored. error-17002
我正在尝试启动 oracle 侦听器,但出现如下错误:
SP2-0734: unknown command beginning "lsnrctl st..." - rest of line ignored.
error-17002
连接已经开始。我尝试从 'user' 命令开始,但在 sqlPLUS 中失败。
错误的原因是什么?
LSNRCTL
是命令行工具而不是 SQL*PLUS
上的命令。
尝试
lsnrctl start listenername
在终端上或 SQL> !lsnrctl status
在 Linux 上和 SQL> host lsnrctl status listenername
在 Windows 上。
我正在尝试启动 oracle 侦听器,但出现如下错误:
SP2-0734: unknown command beginning "lsnrctl st..." - rest of line ignored.
error-17002
连接已经开始。我尝试从 'user' 命令开始,但在 sqlPLUS 中失败。
错误的原因是什么?
LSNRCTL
是命令行工具而不是 SQL*PLUS
上的命令。
尝试
lsnrctl start listenername
在终端上或 SQL> !lsnrctl status
在 Linux 上和 SQL> host lsnrctl status listenername
在 Windows 上。