程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> ORA-01950: no privileges on tablespace xxxx,noprivileges

ORA-01950: no privileges on tablespace xxxx,noprivileges

編輯:Oracle教程

ORA-01950: no privileges on tablespace xxxx,noprivileges



案例場景:

新建了一個表空間後TBS_MARKET_DAT,希望將歸檔的數據放置在這個表空間。


SQL> CREATE TABLESPACE TBS_MARKET_DAT
  2  DATAFILE '/u04/oradata/gps/bookt_data_arch_01.dbf'
  3  SIZE 100M
  4  AUTOEXTEND ON
  5  NEXT 10M
  6  MAXSIZE 4G
  7  EXTENT MANAGEMENT LOCAL
  8  SEGMENT SPACE MANAGEMENT AUTO ONLINE ;

用戶A(默認表空間為TBS_ODS_DAT)創建表時指定表存儲在表空間為TBS_MARKET_DAT時,遭遇ORA-01950: no privileges on tablespace 'TBS_MARKET_DAT'

 

原因分析:

   如下所示,用戶沒有權限在指定的表空間分配空間。只需要將表空間的權限授予給該用戶即可。

[oracle@DB-Server ~]$ 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.

解決方法:

 

方法1: 授予用戶對該表空間的UNLIMITED配額

 

SQL> ALTER USER ETL QUOTA UNLIMITED ON TBS_MARKET_DAT;

User altered.

SQL>

 

方法2: 重新授權resource角色給用戶之後,便可以創建表格

 

SQL> GRANT RESOURCE TO ETL;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved