Arunselvan
Member
How to find the port number which used by particular database?
You didn't say if the DB service was on UNIX/Linux or windows.
If it is on U/L you may run:
ps ax | grep -e '\-S '
if you are not logged in as the same user as the database add the -u XXXXX to the ps ax (ps ax -u XXXXX )
where XXXXX is the database user ID, in many cases this is root.