ORA-31422: owner schema string does not exist
Cause: Value specifed for the owner parameter does not contain the name of an existing schema in the database.
Action: Recheck the name, and call the procedure again using an existing schema name.
ORA-31422: owner schema string does not exist是Oracle数据库返回的一条错误消息,意思是说指定的拥有者模式不存在。
ORA-31422表示指定的owner schema(拥有者模式)不存在。
当向系统发出某个模式的查询语句,但是该查询模式不存在时,ORA-31422错误发生。
1.使用SQL查询确认所指定模式是否存在:
SELECT owner FROM dba_objects WHERE object_name=’owner_schema’;
2.如果查询为空,表明指定的模式不存在,需要重新设置这个模式;
3.可以使用CREATEUSER命令为指定模式创建新用户:
CREATE USER owner_schema IDENTIFIED BY ;
4.使用GRANT命令给用户添加权限:
GRANT TO owner_schema;
5.使用ALTER USER命令更改用户:
ALTER USER owner_schema DEFAULT TABLESPACE tablespace_name;