Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle index size

SELECT SEGMENT_NAME, OWNER, round(sum(BYTES) / 1e6, 0) AS SIZE_MB
FROM DBA_SEGMENTS
WHERE TABLESPACE_NAME = 'tbs_name'
GROUP BY SEGMENT_NAME, OWNER
ORDER BY SIZE_MB DESC;
Comment

PREVIOUS NEXT
Code Example
Sql :: show sql server database 
Sql :: if column value is null then in mysql 
Sql :: get clob size oracle 
Sql :: firebase query timestamp 
Sql :: mysql select distinct date from timestamp 
Sql :: mysql load sql from file 
Sql :: allow null in psql 
Sql :: oracle duration between timestamps 
Sql :: mysql select row with min date 
Sql :: WHERE not regex in SQL 
Sql :: average salary in sql 
Sql :: oracle dba_dependencies 
Sql :: mysql utc to local time 
Sql :: list table columns mysql 
Sql :: open postgresql.conf 
Sql :: activate binary log mariadb 
Sql :: sql display max value 
Sql :: sql server current time without date 
Sql :: ON DUPLICATE KEY UPDATE for postgres 
Sql :: postgresql if else endif 
Sql :: sql server 2019 installation 
Sql :: SQLSTATE[01000]: Warning: 1265 Data truncated for column 
Sql :: ORA-01090: shutdown in progress - connection is not permitted 
Sql :: tablas bootstrap responsive sql server para datos vivos 
Sql :: drop database using terminal postgres 
Sql :: sql top 3 for each group 
Sql :: how to connect to postgres 
Sql :: sqlite commands 
Sql :: mysql fetch all data 
Sql :: select into insert sql server 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =