arcgis 导入空间库出现这种错误 一般是表空间不足,找到相应的表空间增加权限即可。
在oracle中执行以下步骤,则可以创建。
select tablespace_name,sum(bytes)/1024/1024 from dba_data_files group by tablespace_name;
select SEGMENT_TYPE,owner,sum(bytes)/1024/1024 from dba_segments where tablespace_name='WY_SDE' group by segment_type,owner
select * from dba_data_files where tablespace_name='WY_SDE'
alter tablespace WY_SDE add datafile 'F:\app\adminroot\product\11.2.0\dbhome_1\database\WY_SDE2.ora' size 2048M
本文介绍了解决ArcGIS导入空间库时遇到的表空间不足问题。通过查询表空间和段信息,确定了需要扩展的表空间,并提供了在Oracle中增加表空间的具体SQL语句。
1879

被折叠的 条评论
为什么被折叠?



