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
move Officescan server to new server w/o reconfigure
How to order this sequence of events
Granting Access to a Mailbox in Exchange. Can it be done only from Outlook?
Flash game only works correctly after refreshing the page
id no: c1041724 - exchange 2003
Query Slow in some circumstances
batch file to rename files and copy files from one server to another.
Query parameters for subform recordsource
Why does the RemoteAccess service keep stopping?
Access / Maths - Calculate price excluding VAT using an Access field which contains the price including VAT.