数据库文件最大尺寸用默认值怎么表示

数据库文件最大尺寸用默认值怎么表示,第1张

文件夹默认大小就是空文件夹,0大小。文件夹的大小是有文件夹中的文件大小所决定的。 用户可以通过du命令来查询文件夹及文件夹中文件的大小:

[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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9586309.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-29
下一篇 2023-04-29

发表评论

登录后才能评论

评论列表(0条)

保存