为什么我得到ORA-01750: UPDATE/REFERENCES只能是整个表的REVOKEd,而不是按列?
SQL> revoke update(nama)
2 on fauzi.mahasiswa
3 from fauzi;我得到了错误:
revoke update(nama)
*
ERROR at line 1:
ORA-01750: UPDATE/REFERENCES may only be REVOKEd from the whole table, not by
column发布于 2015-09-01 16:57:37
需要从整个表中撤消,而不是从特定列中撤消。来自here
操作:不标识特定列。
https://stackoverflow.com/questions/32327411
复制相似问题