常用ORACLE命令

1、SQLPLUS中改善显示模式
   set   linesize   99999  
   set   heading   off

2、改表名
   alter table a rename to b;

3、删除所有表
   spool  c:\a.txt
   select 'drop table '||table_name from all_tables
   where owner=''
   spool off
   @C:\a.txt

4、查看当前用户每个表占用空间的大小:
   Select Segment_Name,Sum(bytes)/1024/1024 From User_Extents Group By Segment_Name

5、查看每个表空间占用空间的大小:
   Select Tablespace_Name,Sum(bytes)/1024/1024 From Dba_Segments Group By Tablespace_Name

你可能感兴趣的:(oracle)