linux客戶端ora12545 create table報ora-00604錯誤,向各位大俠求教?
create table報ora-00604錯誤,向各位大俠求教?無法在Oracle中創(chuàng)建表,報告00604錯誤,即表空間不足。首先,檢查表空間的使用情況,如下所示:Selectb.file u2;
create table報ora-00604錯誤,向各位大俠求教?
無法在Oracle中創(chuàng)建表,報告00604錯誤,即表空間不足。
首先,檢查表空間的使用情況,如下所示:
Select
b.file u2; Name physical file Name,
b.tablespace 2; Name table space,
b.bytes/1024/1024 size m,
(b.bytes-sum(NVL(a.bytes,0))/1024/1024 used m,
substr((b.bytes-sum(NVL(a.bytes,0)))/(b.bytes)*100,1,5) 利用率
從DBAuu空閑空間a,DBAuu數(shù)據(jù)文件b
其中a.fileid=b.fileid
按b.tablespace分組uname,b.fileuname,b.bytes
按b.tablespace排序u2,執(zhí)行以上語句后,可以知道哪個表空間占用率過高。通過以下方式添加數(shù)據(jù)文件來解決問題。
Alter tablespace table space name add datafile“data file path”size 500自動擴展到下一個1m maxsize unlimited。
如果無法解決,請創(chuàng)建新的監(jiān)視器。
打開Oracle下的net configuration assistant以配置新的監(jiān)視器。