Search
 
SCRIPT & CODE EXAMPLE
 

SQL

orcale 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 :: SQL Less Than or Equal to Operator 
Sql :: grant all privileges microsoft sql 
Sql :: flask marshmallow sqlalchemy 
Sql :: check database sessions oracle 
Sql :: how to add month in update sql 
Sql :: create scalar function in sql server 
Sql :: how to import pymysql through jupyter notebook for windows 
Sql :: power bi dax is in the last 3 months 
Sql :: get count of null in column sql 
Sql :: SQL Multi-line Comments 
Sql :: FIND AVERAGE SALARY EARNER IN SQL 
Sql :: object dependencies in oracle 
Sql :: sql server select furst day of current year 
Sql :: view table mysql 
Sql :: sql query to find percentage of null values in a table 
Sql :: GROUP BY With HAVING Clausel 
Sql :: bigquery get last month 
Sql :: how to run a function in sql 
Sql :: sql select if two columns are equal 
Sql :: plpgsql if statement 
Sql :: t-sql random number for each row 
Sql :: postgresql conectar 
Sql :: mysql with 
Sql :: add clumn to table postgres 
Sql :: checking data type in sql server 
Sql :: select only the month-day from date in PL-SQL 
Sql :: sql count more than 1 
Sql :: insert query mysql workbench 
Sql :: mysql not starting in xampp 
Sql :: sql insert values into table 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =