Viewing 15 posts - 76 through 90 (of 242 total)
steve,
ORDER BY len([data]),[data]
why is this not recommended? it's the simplest solution.
March 29, 2007 at 12:25 pm
cool thanks
better yet though...
select sys.objects.name as 'table',
sys.indexes.name as 'index',
is_disabled = case is_disabled
when '1' then 'disabled'
when '0' then 'enabled'
end
from sys.objects join sys.indexes
on sys.objects.object_id = sys.indexes.object_id
where sys.objects.name =...
March 23, 2007 at 5:25 pm
xp_cmdshell 'net stop SQLSERVERAGENT'
thats it.
though you may need to enable the xp_cmdshell.
March 23, 2007 at 1:26 pm
interesting...
i'll keep that in mind.
thanks!
March 21, 2007 at 11:55 am
i found it.
if i just look under each RS Server and find
the ReportServer database i can run a query against
the Catalog table, and just compare them to each
servers ReportServer.dbo.Catalog table.
March 15, 2007 at 5:30 pm
nevermind... i found it.
most of the information i was looking for CAN
be queried from the ReportServer database.
the information is located in the Catalog table.
March 15, 2007 at 5:29 pm
john
many thanks.
i'm making those changes now. i'll just change the column
name to something like [mb_size]
March 7, 2007 at 4:23 pm
thanks for all the quick replies!
SQLBill
I was just mentioned the kb, mb, gb as a general thought. i'm
not really collecting all that information. just a...
March 7, 2007 at 4:21 pm
seems like there would be a free little utility some where
which would allow you to do just that.
ahh well... what can you do?
March 7, 2007 at 1:36 pm
thanks for all the good feed back people!
i'm looking over teh msinfo stuff now, and i'll
see how i can hit all the servers in my environment
at once.
March 6, 2007 at 2:33 pm
unfortunately i'm not that well versed in this and i don't
know how to use OPENROWSET in a loop, dynamic stringg with xp_cmdshell.
forgive me if i'm asking too much, but is...
March 6, 2007 at 9:22 am
grasshopper,
your stuff worked G R E A T!!
thanks for the post!
February 1, 2007 at 9:19 am
Viewing 15 posts - 76 through 90 (of 242 total)