This script is used to get the memory or RAM consumption for the database(s).
Check this out...
--complete db list
exec prc_dba_ram_consumption @dbname = '*'
--particular db
exec prc_dba_ram_consumption @dbname = 'adventureworks'
Regards,
Vignesh Arulmani