Skip to content
LowyCCN edited this page Nov 6, 2019 · 38 revisions

Product detail

Backup and Restore

Useful SQL

SELECT 
      a.table_name
      ,a.num_rows
      , b.MB
FROM all_tables a
      , (Select Segment_Name,Sum(bytes)/1024/1024 MB From all_segments Group By Segment_Name) b
WHERE a.table_name = b.Segment_Name
ORDER BY a.num_rows desc, b.MB desc;
SELECT stu_no,activity,score,
 RANK() OVER (ORDER BY score) score_rank
FROM student
ORDER BY score_rank;

Translate this page?

Data(DBMS, NoSQL)

Development

Tools

Management

OS

Hardware

Business

Hobby

Lifestyle

Giip(RPA Engine)

Clone this wiki locally