Select to view content in your preferred language

Altering SERVER_CONFIG parameters ArcSDE 10.2

7876
13
Jump to solution
12-18-2014 04:29 PM
GeoffreyWest
Frequent Contributor

I have an ArcSDE connection that's accepting a maximum of 64 instances.  I would like to change it to 128.  I have followed the script from the resource center but receive the error below.  My inclination is that there was a 10.1 SDE instance installed previously.  We are using 10.2 now.   What's the best way to go about this?

sdeCapture.PNG

0 Kudos
13 Replies
VinceAngelo
Esri Esteemed Contributor

I never use SDO. Tech Support might be able to steer you to the right set of flags, but editing the SDE_server_config table might be your easier course of action:

USE SCData
go
UPDATE dbo.SDE_server_config
SET num_prop_value = 128
WHERE prop_name = 'CONNECTIONS'
go

- V

0 Kudos
GeoffreyWest
Frequent Contributor

That worked.

0 Kudos
AsrujitSengupta
Deactivated User

Can you connect using that "sa" user using SQL Server Management Studio or from ArcGIS Desktop?

Did you change the password in the command that Vince gave you as an example? ( -p)

0 Kudos
GeoffreyWest
Frequent Contributor

Yes, I can. I was able to change the connections via SQL Server Management

studio.

0 Kudos