Viewing 4 posts - 1 through 4 (of 4 total)
I have the same issue. After migrating to 2008, temp db is growing so fast. It grew to 38 gig. It shows that available space is 37gig but not releasing...
December 14, 2009 at 12:50 pm
I also have the same problem.
April 27, 2009 at 10:25 am
Leaving Enterprise Manager on worked for me.
When I changed my password last time, I lost all sql server registration. This time I left EM on and changed password. I still...
July 24, 2008 at 10:44 am
This will let you update. This is dangerous so make sure to run allow updates 0
sp_configure 'allow updates',1
GO
RECONFIGURE WITH OVERRIDE
GO
update sysdatabases set category=0 where name = 'xxx'
sp_configure 'allow updates',0
GO
RECONFIGURE WITH...
July 17, 2008 at 2:11 pm
Viewing 4 posts - 1 through 4 (of 4 total)