select
'[' + s.name + '].[' + o.name + ']' as TblName
,p.data_compression_desc
from
sys.partitions p
join sys.objects o
on p.object_id = o.object_id
join sys.schemas s
on o.schema_id = s.schema_id
where
p.data_compression != 0
Wednesday, September 21, 2011
List compressed SQL tables
Friday, September 9, 2011
THE EVOLUTION OF THE WEB
Great visualization. Doesn't render correctly in IE. You'll need to use another browser like Safari.
Tuesday, September 6, 2011
Get the user list for an Active Directory group
dsquery group -samid SecurityGroup | dsget group -members -expand | findstr /i ",OU=UserAccounts," | dsget user -samid > c:\SecurityGroup_userlist.txt
Subscribe to:
Posts (Atom)