Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle index partition

SELECT INDEX_NAME,
       PARTITION_NAME,
       TABLESPACE_NAME,
       INITIAL_EXTENT,
       NEXT_EXTENT,
       PCT_INCREASE,
       NUM_ROWS
FROM DBA_IND_PARTITIONS
WHERE INDEX_NAME = decode(upper('my_index'), 'ALL', INDEX_NAME, upper('my_index'))
  AND INDEX_OWNER = upper('my_owner')
ORDER BY INDEX_NAME, PARTITION_NAME;
Comment

PREVIOUS NEXT
Code Example
Sql :: sysdate in oracle sql 
Sql :: mysql remove only_full_group_by permanently 
Sql :: Incorrect format parameter 
Sql :: check isolation level in mysql 
Sql :: sql to char function with date 
Sql :: date_trunc postgres 
Sql :: ajouter une clé etrangere mysql 
Sql :: mysql sort by date column 
Sql :: mysql - find in comma separated string of values 
Sql :: mysql size of table 
Sql :: drop all procedures sql server 
Sql :: how to remove a column from a table in MySQL 
Sql :: get ip from phpmyadmin 
Sql :: how to get data between a last week in mysql 
Sql :: mysql find missing values 
Sql :: postgresql alter table sequence 
Sql :: delete record mysql query 
Sql :: wherein mysql 
Sql :: mysql version query 
Sql :: sql DATE = GETDATE() 
Sql :: update value postgresql 
Sql :: how to check if a row is null in sql 
Sql :: mysql concatenate null 
Sql :: mysql select multiple rows into one column 
Sql :: oracle insert into 
Sql :: sql delete row with auto increment 
Sql :: DROP TABLes regardless of constraints 
Sql :: How to convert DateTime to VarChar SQL 
Sql :: oracle timestamp to date 
Sql :: sql select into statement 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =