[root@bsso yayu]# du -h --max-depth=1 work/testing
27M work/testing/logs
35M work/testing
[root@bsso yayu]# du -h --max-depth=1 work/testing/*
8.0Kwork/testing/func.php
27M work/testing/logs
8.1Mwork/testing/nohup.out
8.0Kwork/testing/testing_c.php
12K work/testing/testing_func_reg.php
8.0Kwork/testing/testing_get.php
8.0Kwork/testing/testing_g.php
8.0Kwork/testing/var.php
SQL实例的数据库个数32,767,数据库中的对象个数 2,147,483,6474, 数据库的数据表个数受数据库中的对象个数限制。查看方法如下:
1、首先登录sql server managment。
2、然后选择一个数据库,鼠标右键单击属性。
3、在数据库属性页面中,切换到常规选项。
4、在常规页面右侧就能看到数据库大小,可用空间和一些数据库的基本信息。
5、最后数据库如果不够用了可以进行收缩。
1. 查看所有表空间大小SQL>select tablespace_name,sum(bytes)/1024/1024 from dba_data_files
2 group by tablespace_name
2. 已经使用的表空间大小
SQL>select tablespace_name,sum(bytes)/1024/1024 from dba_free_space
2 group by tablespace_name
3. 所以使用空间可以这样计算
select a.tablespace_name,total,free,total-free used from
( select tablespace_name,sum(bytes)/1024/1024 total from dba_data_files
group by tablespace_name) a,
( select tablespace_name,sum(bytes)/1024/1024 free from dba_free_space
group by tablespace_name) b
where a.tablespace_name=b.tablespace_name
4. 下面这条语句查看所有segment的大小.
Select Segment_Name,Sum(bytes)/1024/1024 From User_Extents Group By Segment_Name
5. 还有在命令行情况下如何将结果放到一个文件里.
SQL>spool out.txt
SQL>select * from v$database
SQL>spool off
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)