Microsoft
Software
Hardware
Network
Question : SQL Server updateusage
How do i run DBCC UPDATEUSAGE for particular databases only. i do not want master, tempdb and model in it.
i have
EXEC sp_msforeachdb 'DBCC UPDATEUSAGE(''?'')
and this does for all databases but need something that skips above three databases
Answer : SQL Server updateusage
EXEC sp_msforeachdb ' if ''?'' not in ( ''master'', ''msdb'', ''tempdb'') DBCC UPDATEUSAGE(''?'') '
Random Solutions
IF(ISERROR(VLOOKUP) with a row offset
oracle lite
Changing Font Color with PHP According to Page
"Tell Target" is CS4
Logon script to copy shortcut to desktop
recovery console
TS Profile for Citrix
Putty on XP machine suddenly stopped working???????
Where do I run RUBY?
High Page file usage on SQL Server 2005