Failed to connect to database. Maximum number of connections to instance exceeded

使用ArcGIS Desktop连接sde,提示Failed to connect to database. Maximum number of conections to instance exceeded

Failed to connect to database. Maximum number of connections to instance exceeded_第1张图片

SDE本身默认设置的最大连接数为48个,10.6版本为64个,可以使用select * from SDE.server_config where prop_name='CONNECTIONS'查看实际值。

可以通过update sde.server_config set num_prop_value=64 where prop_name='CONNECTIONS'更改相应连接数最大值

 

注意,不建议将该值设置过大,毕竟每个连接会消耗一定量内存

可以使用select * from v$session查询oracle连接信息,可重点关注machine、program等字段

 

更多内容可参考https://blog.csdn.net/nj198624/article/details/8155804

你可能感兴趣的:(arcgis操作问题,arcgis制图)