Skip to content

Instantly share code, notes, and snippets.

@libotti
Created December 20, 2020 00:26
Show Gist options
  • Save libotti/6f9e5616653d8c51873b7b79834a95c2 to your computer and use it in GitHub Desktop.
Save libotti/6f9e5616653d8c51873b7b79834a95c2 to your computer and use it in GitHub Desktop.
ORACLE TABLE STATISTICS
SELECT owner usuario
,table_name tabela
,tablespace_name tablespace
,num_rows num_linhas
FROM all_tables
WHERE owner = &usuario
ORDER BY owner, table_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment