Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle diskgroup

select name, 
       total_mb, 
       free_mb, 
       total_mb - free_mb as used_mb, 
       round(100 * free_mb / total_mb, 2) as pct_free
from v$asm_diskgroup
order by 1;
Comment

PREVIOUS NEXT
Code Example
Sql :: how to check current root password in mysql 
Sql :: Inserting data into different tables at once in oracle sql 
Sql :: do block in postgresql 
Sql :: create directory in sql server 
Sql :: sql with as 
Sql :: last date for each user sql 
Sql :: macos oracle docker oracle11g 
Sql :: sql union 
Sql :: SQL Syntax of FULL OUTER JOIN 
Sql :: .env pgsql 
Sql :: sql server get date of previous sunday 
Sql :: mysql group rows with same value 
Sql :: cast as decimal postgresql 
Sql :: wp sql to update admin email 
Sql :: mysql copy row with new id 
Sql :: mysql select field if condition 
Sql :: creashed table mysql 
Sql :: set value to null postgres 
Sql :: postgresql create user roles 
Sql :: mysql begin statement 
Sql :: access refused mysql xampp server 
Sql :: set up mssql in mac m1 
Sql :: if exist column in table drop sql query mysql 
Sql :: search from comma separated values in sql server 
Sql :: mysql get auto_increment value 
Sql :: TSQL convert csv to table 
Sql :: mysql_union 
Sql :: SQL Delete and Truncate Rows 
Sql :: convert sql to linq c# online 
Sql :: postgresql replace html tags from string 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =