How to add database in progress explorer tool

kartikvbn

New Member
Dear all,

i am trying to add a database in progress explorer tool from command line or dos ..
please give me a example...
for example

db name which is showing in progress explorer tool DATABASES sportsCopy
Path or File Name of Database c:\openEdge\wrk\sports.db
service or port Name 3100

pls give me a batch file or proenv command...

waitting for positive reply..
 

Casper

ProgressTalk.com Moderator
Staff member
you could edit conmngrs.properties file manually... But that is probably not what you are looking for.
Any reason why you want to do it from command line?

Casper
 

kartikvbn

New Member
Thanks for reply,

But i need a make a installation program which create a database server ...
& pls explain what is conmngrs.properties ...


? ? ?
?
 

Casper

ProgressTalk.com Moderator
Staff member
The conmngrs.properties file is the file in which the data resides from the databases which have been configured with the progress explorer.

If you are on version 10 then you could use the mergeprop utility (look for this at PSDN or in the OpenEdge 10.1B Installation & configuration guide.

If you are on 9 you could edit the conmngr.properties file or write some script to do this.

The properties file is somewhat self explantory (Parameters are in the comment) and resides in $DLC/properties. (Backup before you change)

Simple sports database startup config looks like:

[configuration.sportstest.defaultconfiguration]
afterimagebuffers=75
beforeimagebuffers=50
blocksindatabasebuffers=10000
database=sportstest
displayname=defaultConfiguration
maxservers=7
maxusers=38
servergroups=sportstest.defaultconfiguration.defaultservergroup
spinlockretries=1

[database.sportstest]
configurations=sportstest.defaultconfiguration
databasename=C:\OpenEdge101B\wrk\sports\sports2000
defaultconfiguration=sportstest.defaultconfiguration
displayname=sportstest

[servergroup.sportstest.defaultconfiguration.defaultservergroup]
configuration=sportstest.defaultconfiguration
displayname=defaultServerGroup
maxclientsperserver=5
numberofservers=7
port=12000

HTH,

Casper
 
Top