Requires Free Membership to View
SELECT name,value FROM v$sga;
However, the first line of output from SHOW SGA is the following SQL statement:
SELECT 'Total System Global Area',SUM(value) FROM v$sga; Performing a UNION ALL ties it all together: SELECT 'Total System Global Area',SUM(value) FROM v$sga UNION ALL SELECT name,value FROM v$sga;
This was first published in March 2004

Join the conversationComment
Share
Comments
Results
Contribute to the conversation