Where can I set the folder to store a database in when I create a new Database in the Microsoft SQL 2008 Server?

link|improve this question
feedback

migrated from serverfault.com Dec 29 '11 at 14:37

This question came from our site for system administrators and desktop support professionals.

1 Answer

up vote 5 down vote accepted

Via the GUI, right click the main server node:

enter image description here

Programmatically, it is stored in the registry. You can see this here: http://blogs.technet.com/b/sqlman/archive/2009/07/20/tsql-script-determining-default-database-file-log-path.aspx

However, you'd typically specify paths, names, sizes etc in your CREATE DATABASE

link|improve this answer
+1 for method 2 in the link. – brian Dec 30 '11 at 3:24
feedback

Your Answer

 
or
required, but never shown