ORA-01950
来源:锐游网
问题
oerr ora 01950
01950, 00000, "no privileges on tablespace '%s'"
// *Cause: User does not have privileges to allocate an extent in the
// specified tablespace.
// *Action: Grant the user the appropriate system privileges or grant the user
// space resource on the tablespace.
解决方案
更改用户的表空间限额:
alter user app quota unlimited on app_tbs;
更改用户的全局表空间限额:
grant unlimited tablespace to app;
因篇幅问题不能全部显示,请点此查看更多更全内容