加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

SQLserver空间大小查询

发布时间:2020-12-12 15:51:20 所属栏目:MsSql教程 来源:网络整理
导读: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|dbn

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 ? information ? (operation,? context,? transaction ? id) ? ? ? ? ? ? ? ? ? ? 1 ? - ? more ? information ? (plus ? flags,? tags,? row ? length,? description) ? ? ? ? ? ? ? ? ? ? 2 ? - ? very ? detailed ? information ? (plus ? object ? name,? index ? name,? ? ? ? ? ? ? ? ? ? ? ? page ? id,? slot ? id) ? ? ? ? ? ? ? ? ? ? 3 ? - ? full ? information ? about ? each ? operation ? ? ? ? ? ? ? ? ? ? 4 ? - ? full ? information ? about ? each ? operation ? plus ? hexadecimal ? dump ? ? ? ? ? ? ? ? ? ? ? ? of ? the ? current ? transaction ? log's ? row. ? ? ? ? ? ? ? ? ? -1 ? - ? full ? information ? 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)??

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读