You couldn't have expanded the databases without having free space in a device first.Run this code in a query window and post the ouptut so that we can see what you have.use mastergoset nocount ondeclare @mess varchar(200)select @mess = 'Server ' + @@SERVERNAME + ' at ' + convert(varchar(50), getdate(),111) +' ' +convert(varchar(50), getdate(),114)print ' 'print @messprint ' 'print 'Display Database Segment Sizes'print ' 'goset nocount offgoselect --a.dbid, DB_Name = a.name, --b.segmap, Segment_Type = convert(varchar(15), case b.segmap when 3 then 'Data' when 4 then 'Log' when 7 then 'Data and Log' else 'Unknown' end), --Segment_Size = b.size, Seg_Megabytes = (b.size * 2) / (1024) , --b.Lstart , --DB_Creation_Date = a.crdate, --Current_Date_Time = getdate(), Device_Name = c.Name, Device_Path = c.phyname --,b.Vstart, --c.Low, --c.Highfrom master.dbo.sysdatabases a, master.dbo.sysusages b, master.dbo.sysdevices cwhere a.dbid = b.dbid and b.vstart >= c.low and b.vstart <= c.High and c.high > 19 and c.phyname <> 'nul'order by a.dbid, b.lstartgoprint ' 'print 'Display Database Devices'print ' 'goset nocount ongoselect DeviceNumber = case when name = 'master' then 0 when convert(int,convert(binary(1), (low / 0x01000000))) = 0 then convert(smallint,null) else convert(smallint,convert(int,convert(binary(1), (low / 0x01000000)))) end, *into #t1from master..sysdevicesgoset nocount offgoselect DeviceNumber , low , high , name , phyname --* --status , --cntrltype , --mirrorname , --stripesetfrom #t1where DeviceNumber is not nullorder by DeviceNumber, Namegodrop table #t1goprint ' 'print 'End'print ' '
CODO ERGO SUM