Viewing 7 posts - 751 through 757 (of 757 total)
Gail
I'm using the sysindexes to obtain the date that stats were last updated.
I make use of the rows modified and the rowcount
August 31, 2011 at 2:27 am
Thanks
So, i'm assuming that the index_id columns is the equivalent?
What do the numbers in that column indicate?
Is 0= Heap
1= Clustered Index
and anything > 1 = Non Clustered...
August 31, 2011 at 2:24 am
Without the ('char','nchar','varchar','nvarchar') though
Those arent LOB columns
August 30, 2011 at 7:22 am
A Clustered Index whose base table that has any column that is LOB cannot be rebuilt online.
A Non clustered index whose base table has any non key LOB columns participating...
August 30, 2011 at 6:52 am
Try this script
create table #db
(DBNAME varchar(50),
Size float,
remarks varchar(4))
GO
insert into #db
exec sp_databases
select DBNAME, Size/1024 as SizeMB from #db
order by SizeMB desc
drop table #db
August 24, 2011 at 12:07 am
Viewing 7 posts - 751 through 757 (of 757 total)