sir
i want to know the followings
1.what is the purpose of broker and server in progress dba
2. function of broker and server in progress dba
The product documentation is a good place to start for the answers to basic questions.
First read Database Essentials and then move on to Database Administration.
The product documentation is a good place to start for the answers to basic questions.
First read Database Essentials and then move on to Database Administration.
Go thro the documentations available in progress website before asking these kind of questions.
[collapse]Thread created by aaravindhantjsir
i want to know the followings
1.what is the purpose of broker and server in progress dba
2. function of broker and server in progress dba
Stop receiving emails on this subject.Flag this post as spam/abuse.
when you you start the database with a "proserve -pf foo.pf" command, this starts the primary broker process. that initializes the database server and performs crash recovery if necessary. if tcp connections are enabled, then it also listens for connections requests on the specified port. when a connection request arrives, it is assigned to an available server process or a new process started if the server limit has not been reached. the server accesses the database on behalf of its clients until they disconnect.
there are quite a few configuration options. i won't go into those here. you should read about them in the documentation.