Thanks, Casper.
The reason I posted the question is because I'm monitoring ODBC connections created against the Progress database server by my web application. What I'm observing is that for the same connection string, say
"HOST=myServerAddress;DB=m
I can sometimes see two different TCP connections to the database server or broker, say
Local Port#: 3000 Remote Port #: 2000
Local Port#: 3002 Remote Port #: 2000
Can you please explain this?
Main Topics
Browse All Topics





by: progressorPosted on 2009-07-22 at 22:55:16ID: 24922171
The port number in the connection string is the portnumber of the database broker. This broker routes the request to an available server. (_sqlsrv2 proces) , default portrange of SQL (_sqlsrv2) or 4GL (_mporsrv) servers lie between 1025 and 2000. The actual request is handled and sent back by a server proces, not by the database broker.
Casper.