ORA-01950錯誤的解決方法
ORA-01950錯誤的解決方法
當我使用一個新建的使用者(zeng)建立完一個表,插入記錄的時候出現如下的錯誤。
SQL> insert into account_manager values('1000','smith','2012-FEB-03',10000,4000,'N');
insert into account_manager values('1000','smith','05-FEB-12',10000,4000,'N')
*
ERROR at line 1:
ORA-01950: no privileges on tablespace 'USERS'
[oracle@zeng ~]$ 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.
原因是在指定的表空間(這裡是users)沒有配額。
給該使用者授予一定的表空間配額。
SQL> alter user zeng quota 50M on users;
User altered.
SQL> conn zeng/oracle
Connected.
SQL> insert into account_manager values
2 ('10000','smith','05-FEB-12',10000,3000,'N');
1 row created.
SQL> commit;
Commit complete.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26110315/viewspace-717144/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORA-01950錯誤分析
- undefined reference to錯誤的解決方法Undefined
- PHP錯誤“Thisfilehasexpired”的解決方法PHP
- PbootCMS 404 錯誤解決方法boot
- 錯誤Namenodeisinsafemode的解決方法
- vsftpd 錯誤:530 and 500 錯誤解決方法FTP
- AFNetworkingErrorDomain 錯誤解決方法ErrorAI
- dbfread報錯ValueError錯誤解決方法Error
- standby新增檔案錯誤的解決方法
- MYSQL中 TYPE=MyISAM 錯誤的解決方法MySql
- Mac上搭建chromedriver的錯誤解決方法MacChrome
- nginx出現403錯誤的解決方法Nginx
- HTTP 錯誤 500.19- Internal Server Error 錯誤解決方法HTTPServerError
- 【Oracle】ORA-00054 錯誤解決方法Oracle
- Android錯誤解決方法集錦Android
- hadoop日常錯誤解決方法整理Hadoop
- ORA-04098錯誤解決方法
- ORA-25154錯誤解決方法
- npm WARN unmet dependency錯誤解決方法NPM
- Ajax中“Sys未定義”錯誤的解決方法
- 寬頻連線錯誤691解決方法
- ORA-14452錯誤及解決方法
- ubuntu網路卡啟動錯誤解決方法Ubuntu
- IMP-00098 錯誤及解決方法
- steam磁碟寫入錯誤怎麼解決 steam磁碟寫入錯誤解決方法大全
- Nginx報504 gateway timeout錯誤的解決方法NginxGateway
- oracle ORA-12899錯誤的解決方法Oracle
- ORA-01578錯誤的解決方法 ( 二)
- Oracle 常見的錯誤問題及解決方法Oracle
- 常見的80004005錯誤及其解決方法 (轉)
- 解決java5 發行錯誤最好的方法Java
- 印表機提示列印錯誤怎麼解決 印表機狀態錯誤的方法
- Ocelot錯誤解決
- ORACLE匯入遇到ORACLE錯誤959解決方法Oracle
- 寬頻連線錯誤解決方法總彙
- PL/SQL:ORA-04063錯誤解決方法SQL
- ORA-01631錯誤解決方法
- Oracle 資料庫連線錯誤解決方法Oracle資料庫