arcgis server The attribute buffer size is too small

时间:2022-10-21 20:22:13
ERROR 999999: Error executing function.
The attribute buffer size is too small.

转载:http://blog.sina.com.cn/s/blog_707ae20a0100lria.html

1.

giomgr.defs

select * from sde.server_config t Order By prop_name;
Update sde.server_config t Set t.num_prop_value=50000 Where prop_name='ATTRBUFSIZE';
Update sde.server_config t Set t.num_prop_value=65536 Where prop_name='MAXBUFSIZE';
Commit;

2.
select * from sde.server_config t Order By prop_name;
Update sde.server_config t Set t.num_prop_value=50000 Where prop_name='ATTRBUFSIZE';
Update sde.server_config t Set t.num_prop_value=65536 Where prop_name='MAXBUFSIZE';
Commit;


select * from sde.server_config t
Update sde.server_config t Set num_prop_value=150 Where   prop_name='MAXARRAYSIZE'

Commit;

转载:http://blog.sina.com.cn/s/blog_707ae20a0100lria.html