1. 首页
  2. 数据库
  3. SQLServer
  4. 查询数据库状态

查询数据库状态

上传者: 2020-07-19 16:21:05上传 TXT文件 4.89KB 热度 23次
查询数据库的状态信息: ------------------------------Data file size---------------------------- if exists (select * from tempdb.sys.all_objects where name like '%#dbsize%') drop table #dbsize create table #dbsize (Dbname varchar(30),dbstatus varchar(20),Recovery_Model varchar(10) default ('NA'), file_Size_MB
用户评论
码姐姐匿名网友 2020-07-19 16:21:05

语句很实用,正是我需要的内容。能够实现需要的功能。