中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SQLSERVER如何查看各磁盤可用空間

發布時間:2021-11-09 10:10:00 來源:億速云 閱讀:467 作者:小新 欄目:關系型數據庫

這篇文章將為大家詳細講解有關SQLSERVER如何查看各磁盤可用空間,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

保存數據的表


create table dc_DiskDetaill 
(
 Drive varchar(10),
 Size  varchar(50),
 FreeSize varchar(50),
 GetTime  datetime default(getdate())
)


采集的存儲過程


SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:  <DBA>
-- Create date: <2012-11-16>
-- Description: <get_disk_size>
-- =============================================
CREATE PROCEDURE [dbo].[Usp_Get_DiskSize]
as
begin
 create table  #freedisk (drive varchar(50),disksize varchar(100))
 insert into #freedisk
 exec master.dbo.xp_fixeddrives  
 
EXEC sp_configure 'show advanced options', 1
RECONFIGURE
EXEC sp_configure 'xp_cmdshell', 1
RECONFIGURE
EXEC sp_configure 'show advanced options', 0
RECONFIGURE




  create table #a (DiskName varchar(50))
  insert into #a 
  exec xp_cmdshell  'wmic LOGICALDISK get name'
  select IDENTITY(int,1,1) as id ,DiskName into #a1 from #a 
  drop table #a 
  
  create table #b (freespace varchar(50))
  insert into #b
  exec xp_cmdshell 'wmic LOGICALDISK get freespace' 
  select IDENTITY(int,1,1) as id ,freespace into #b1 from #b 
  drop table #b 
  
  create table #c(size varchar(50))
  insert into #c 
  exec xp_cmdshell 'wmic LOGICALDISK get size'
  select IDENTITY(int,1,1)as id,size into #c1 from #c  
  drop table #c 
  
  delete from #a1 where id=1
  delete from #b1 where id=1
  delete from #c1 where id=1 
  
  update #a1 set DiskName=REPLACE(DiskName,':','')
  update #a1 set DiskName=REPLACE(DiskName,' ','')
  
  select id,LEFT(diskname,1) as diskname into #a2 from #a1 
  drop table #a1 
  
  select  a.diskname,b.freespace,c.size,getdate() as gettime into #all 
  from #a2 as a ,#b1 as b ,#c1 as c where a.id=b.id and a.id=c.id 
  and a.diskname in (select drive  from #freedisk)
  drop table #a2
  drop table #b1
  drop table #c1
  
  update #all set freespace=REPLACE(freespace,' ',''),size=REPLACE(size,' ','')
  select diskname,left(freespace,LEN(freespace)-1) as freespace, left(size,LEN(size)-1) as size,gettime into #all2  from #all
  drop table #all 
  
  insert into dc_DiskDetaill(Drive,Size,FreeSize,GetTime)
  select diskname,cast(size as bigint)/1024/1024 as size,cast(freespace as bigint)/1024/1024 as freesize,gettime from #all2
  drop table #all2 
 EXEC sp_configure 'show advanced options', 1
RECONFIGURE
EXEC sp_configure 'xp_cmdshell', 0
RECONFIGURE
EXEC sp_configure 'show advanced options', 0
RECONFIGURE


 drop table #freedisk
end

調用存儲過程并查看是否有數據
exec [Usp_Get_DiskSize]


select * from  dc_DiskDetaill

關于“SQLSERVER如何查看各磁盤可用空間”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阜阳市| 东辽县| 长岛县| 临沧市| 岳普湖县| 玉溪市| 施秉县| 武城县| 六安市| 韩城市| 合肥市| 阳春市| 伊春市| 巴南区| 苏尼特右旗| 库尔勒市| 沛县| 青冈县| 罗定市| 丹棱县| 富川| 沙田区| 外汇| 平遥县| 兰西县| 阿尔山市| 漠河县| 哈尔滨市| 沧州市| 台南县| 景洪市| 鱼台县| 定安县| 当涂县| 康乐县| 高安市| 涟水县| 南投市| 喀喇沁旗| 平塘县| 镇沅|