ORA-26732: invalid file group string privilege ORACLE 报错 故障修复 远程处理
文档解释
ORA-26732: invalid file group string privilege
Cause: The specified privilege number that was specified is invalid.
Action: Check specification of dbms_file_group for valid privileges.
ORA-26732:无效文件组字符特权错误消息表明指定的文件组字符特权无效。问题出现在 grant、 revoke或 alter system 语句。
官方解释
发出 grant、 revoke等SQL语句的用户指定的 要操作的文件组字符特权 (operating system privilege) 无效。
常见案例
案例1:在授权其他数据库用户使用CREATE DATABASE LINK时可能会收到以下错误消息:
SQL> GRANT CREATE DATABASE LINK TO test;
GRANT CREATE DATABASE LINK TO test
*
ERROR at line 1:
ORA-26732: invalid file group string privilege
解决方法:
要正确授予一个用户权限,需执行以下语句:
alter user test identified by test quota unlimited on users;
grant create database link to test;
该步骤并没有实际修改空间,只是授权用户使用CREATE DATABASE LINK而已。