alter table add constraint foreign key ( ) references ( );
ORA-01031: insufficient privileges
ADD constraint 需要references 权限,权限不可以给role ,直接直接给用户。
grant references on XXX to role ;
ORA-01931: cannot grant REFERENCES to a role
grant references on to user;
如果grant references on to 自己;
ORA-47401: Realm violation for GRANT on 或者报错
ORA-01749: you may not GRANT/REVOKE privileges to/from yourself

2798

被折叠的 条评论
为什么被折叠?



