I think I tried that, but if I understand it right I can only change where I will install the SQL server so I will end up with both the SQL server and the system databases on that location.
That is correct
You can move your master database by changing the -d and -l startup paremetes in the SQL Server config manager.
You can then move your other system databases with a restore or detach method.
You can move the tempdb with this script.
use master
go
Alter database tempdb modify file (name = tempdev, filename = 'D:\programs\mssql\data\tempdb.mdf')
go
Alter database tempdb modify file (name = templog, filename = 'D:\programs\mssql\data\templog.ldf')
Go
- Paul
- Database performance looks fine, it must be the Network!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.