Thanks to Uri Dimant who posted this code in Microsoft sql server newsgroup. I am posting this in my blog just for future reference
CREATE PROCEDURE sp_totalHDDspace
AS
SET NOCOUNT ON
DECLARE @hr int
DECLARE @fso int
DECLARE @drive char(1)
DECLARE @odrive int
DECLARE @TotalSize varchar(20)
DECLARE @MB bigint ; SET @MB = 1048576
CREATE TABLE #drives (drive char(1) PRIMARY KEY,
FreeSpace int NULL,
TotalSize int NULL)
INSERT #drives(drive,FreeSpace)
EXEC master.dbo.xp_fixeddrives
EXEC @hr=sp_OACreate 'Scripting.FileSystemObject',@fso OUT
IF @hr <> 0 EXEC sp_OAGetErrorInfo @fso
DECLARE dcur CURSOR LOCAL FAST_FORWARD
FOR SELECT drive from #drives
ORDER by drive
OPEN dcur
FETCH NEXT FROM dcur INTO @drive
WHILE @@FETCH_STATUS=0
BEGIN
EXEC @hr = sp_OAMethod @fso,'GetDrive', @odrive OUT, @drive
IF @hr <> 0 EXEC sp_OAGetErrorInfo @fso
EXEC @hr = sp_OAGetProperty @odrive,'TotalSize', @TotalSize OUT
IF @hr <> 0 EXEC sp_OAGetErrorInfo @odrive
UPDATE #drives
SET TotalSize=@TotalSize/@MB
WHERE drive=@drive
FETCH NEXT FROM dcur INTO @drive
END
CLOSE dcur
DEALLOCATE dcur
EXEC @hr=sp_OADestroy @fso
IF @hr <> 0 EXEC sp_OAGetErrorInfo @fso
SELECT drive,
FreeSpace as 'Free(MB)',
TotalSize as 'Total(MB)',
CAST((FreeSpace/(TotalSize*1.0))*100.0 as int) as 'Free(%)'
FROM #drives
ORDER BY drive
DROP TABLE #drives
RETURN
go
Monday, 1 September 2008
Subscribe to:
Post Comments (Atom)
4 comments:
大奶性交性愛淫蕩淫慾淫亂淫婦淫妹淫叫淫水淫女情慾情色做愛限制級波霸口交18禁貼圖寫真視訊援交露點爆乳潮吹裸體裸照裸女愛愛無碼尋夢視訊聊天a漫a片
Thank You for being the member of this website. Please allow me to have the possibility to express my satisfaction with Host Gator web hosting. They offer professional and quick support and they also offer numerous [url=http://tinyurl.com/gatorcoupon ]Hostgator coupon codes[/url].
I love Hostgator hosting, you will too.
http://milieu.eroding.net/index.php?action=profile;u=17041
HI, I just joined this community. I m from China. I like this forum.......hope to learn lot of things here ;-)
------------------------------------------------------------------------
My Poker Blog: Online Poker Sites For Poker details
I'm here to help get your internet site off to a great commence. Do not be one of those that wished they had accomplished it better the first time, then consider on the task, and price, of starting above. Your internet site displays what you along with your business or pastime are all about.
I am able to provide low-cost, user-friendly, custom made developed sites for any wide array of firms, organizations and teams.Additionally, it should not price a lot of money to get you started. I'll aid guide you via the procedure as well as alert you when i think you might be obtaining in more than your head, or past your spending budget.
Here are some hight top quality services to get a resonable cost:
Front-End Development
Custom web site design
Affordable web site design
E-Commerce website design
Corporate Website Design
Innovative website design
Static Web Design
Website maintenance
Web site re-designs
SEO Services
Logo Design
Please look around the site for further information about the [url=http://www.adrianbotea.com]freelance web designer[/url] services that I am able to offer and to see examples of websites that I have designed
--------------------------------
[url=http://www.adrianbotea.com/seo-services][img]http://www.adrianbotea.com/seo-moz.png[/img][/url]
Post a Comment