0% 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.

Uploaded by

hassanshoaib
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% 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.

Uploaded by

hassanshoaib
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

SELECT name, value

FROM v$sysstat
WHERE name LIKE '%table %'
ORDER BY name;

You might also like