Assuming you just want to use only mysql server memory.
In windows you can use Process Explorer
On linux, you can use the top command.
- Use "ps -e" to find the pid of the mysql process.
- Then use "top -p {pid}", where {pid} is the pid of the mysql process.
source
share