Viewing 3 posts - 1 through 3 (of 3 total)
when we did our migration from 2005 to sql 2008 ,we configured logshipping on the databases which needs to be migrated and then just brought it online at the appropriate...
October 21, 2011 at 7:01 am
CREATE PROCEDURE sp_diskspace
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 (ServerName varchar(15),
drive char(1) PRIMARY...
August 26, 2008 at 6:51 am
have you tried sp__diskspace?:unsure:
August 26, 2008 at 6:26 am
Viewing 3 posts - 1 through 3 (of 3 total)