Moving Tempdb to another drive would see a increase in performance.
1. The size of the tempdb grows and if there is no space this will cause the applciations to slow down eventually to a halt.
2. The space on the other hard disk could give a better performance than the existing one as a result of more space.
The following code can be used to move the tempdb from the existing drive to e:\
USE TempDB
GO
EXEC sp_helpfile
GO
USE master
GO
ALTER DATABASE TempDB MODIFY FILE
(NAME = tempdev, FILENAME = 'e:\sqldata\datatempdb.mdf')
GO
ALTER DATABASE TempDB MODIFY FILE
(NAME = templog, FILENAME = 'e:\sqldata\datatemplog.ldf')
GO
Also please note the sql server service has to be stopped and restarted to have this new tempdb location to work.
get the repair access databases utility and start the parsing of affected documents if you’d like to repair not openable files. It does not take a lot of time
ReplyDelete