【发布时间】:2015-06-03 16:16:23
【问题描述】:
我正在尝试更改 oracle 密码:
alter user FOO identified by 'BAR';
我得到以下回复:
Error starting at line 120 in command:
alter user FOO identified by 'BAR'
Error report:
SQL Error: ORA-00988: missing or invalid password(s)
00988. 00000 - "missing or invalid password(s)"
发生了什么事?
【问题讨论】:
-
删除密码周围的单引号,后跟
identified by子句。
标签: oracle passwords createuser