微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

SQLserver空间大小查询

1.如果获得数据库的大小?

exec   sp_helpdb 

select   *   from   sysfiles

2.查询某个库空间

use dbname

sp_spaceused

3.查某个表空间

sp_spaceused  tablename

4.查看日志文件内容

DBCC   log(dbname,type=4) 

Syntax:         DBCC   log   (   {dbid|dbname},  [,  type={-1|0|1|2|3|4}]   )               ParaMETERS:           Dbid   or   dbname   -   Enter   either   the   dbid   or   the   name   of   the   database                                             in   question.                     type   -   is   the   type   of   output:                     0   -   minimum   @R_98_4045@ion   (operation,  context,  transaction   id)                     1   -   more   @R_98_4045@ion   (plus   flags,  tags,  row   length,  description)                     2   -   very   detailed   @R_98_4045@ion   (plus   object   name,  index   name,                        page   id,  slot   id)                     3   -   full   @R_98_4045@ion   about   each   operation                     4   -   full   @R_98_4045@ion   about   each   operation   plus   hexadecimal   dump                         of   the   current   transaction   log's   row.                   -1   -   full   @R_98_4045@ion   about   each   operation   plus   hexadecimal   dump                         of   the   current   transaction   log's   row,  plus   Checkpoint   Begin,                        DB   Version,  Max   XDESID         by   default   type   =   0         To   view   the   transaction   log   for   the   master   database,  you   can   run   the     following   command:         DBCC   log   (master)  

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐