what is the command to see which database ie..oracle in running on solaris 10

what is the command to see which database ie..oracle in running on solaris 10

Hi,

Just type pkginfo in your solaris environment which lists the set of packages installed in the system. You should be able to find the database details now.

Regards,
Harish J

Hi,

You can use "ps -ef" command to list the processes on the server. You can grep it for oracle as follows :

# ps -ef |grep -i pmon

if you see an output with user oracle it means oracle is running on the system. you can change "pmon" with mysqld for mysql.

Niyazi