SELECT Name, Value FROM V$sysstat WHERE Name LIKE '%table %' ORDER BY Name
This SQL query selects the name and value columns from the v$sysstat view for any rows where the name contains the text "table" and orders the results by name. It will display statistics related to table usage from the database.
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
35 views
SELECT Name, Value FROM V$sysstat WHERE Name LIKE '%table %' ORDER BY Name
This SQL query selects the name and value columns from the v$sysstat view for any rows where the name contains the text "table" and orders the results by name. It will display statistics related to table usage from the database.