Check table size in Oracle database
SELECT segment_name, segment_type, bytes/1024/1024 MB | |
FROM user_segments | |
WHERE segment_type='TABLE' AND segment_name='YOUR_TABLE_NAME' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment