SQL Server 2005/2008 user database file default path and default backup path modification method

Source: Internet
Author: User
Tags copy key log mssql mssqlserver sql query version
The following are only references, and may be slightly different if there are multiple instances:
This environment is SQL Server Standard version 64-bit and SQL Server 2008 Standard version 64-bit dual instances installed simultaneously in a
On Windows Server 2008 Standard Version 64-bit OS:

Code
Copy CodeThe code is as follows:
Windows Server 2008 Standard Version 64-bit
SQL Server Standard Version 64-bit

Query user library data file default path:
DECLARE @DefaultData VARCHAR (100)
EXEC Master.. Xp_regread @rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql.1\mssqlserver ',
@value_name = ' Defaultdata ',
@DefaultData = @DefaultData OUTPUT
SELECT @DefaultData

Query user library log file default path:
DECLARE @DefaultLog VARCHAR (100)
EXEC Master.. Xp_regread @rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql.1\mssqlserver ',
@value_name = ' Defaultlog ',
@DefaultLog = @DefaultLog OUTPUT
SELECT @DefaultLog

Query user library backup file default path:
DECLARE @BackupDirectory VARCHAR (100)
EXEC Master.. Xp_regread @rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql.1\mssqlserver ',
@value_name = ' BackupDirectory ',
@BackupDirectory = @BackupDirectory OUTPUT
SELECT @BackupDirectory


To modify the user library data file default path:
EXEC Master.. Xp_regwrite
@rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql.1\mssqlserver ',
@value_name = ' Defaultdata ',
@type = ' REG_SZ ',
@value = ' D:\SQL2005\Data '

Modify User library log file default path:
EXEC Master.. Xp_regwrite
@rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql.1\mssqlserver ',
@value_name = ' Defaultlog ',
@type = ' REG_SZ ',
@value = ' D:\SQL2005\Log '

To modify the default path for user library backup files:
EXEC Master.. Xp_regwrite
@rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql.1\mssqlserver ',
@value_name = ' BackupDirectory ',
@type = ' REG_SZ ',
@value = ' D:\SQL2005\DBBak '


Copy CodeThe code is as follows:
Windows Server 2008 Standard Version 64-bit
SQL Server 2008 Standard Version 64-bit

Query user library data file default path:
DECLARE @DefaultData VARCHAR (100)
EXEC Master.. Xp_regread @rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql10. Sql2008\mssqlserver ',
@value_name = ' Defaultdata ',
@DefaultData = @DefaultData OUTPUT
SELECT @DefaultData

Query user library log file default path:
DECLARE @DefaultLog VARCHAR (100)
EXEC Master.. Xp_regread @rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql10. Sql2008\mssqlserver ',
@value_name = ' Defaultlog ',
@DefaultLog = @DefaultLog OUTPUT
SELECT @DefaultLog

Query user library backup file default path:
DECLARE @BackupDirectory VARCHAR (100)
EXEC Master.. Xp_regread @rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql10. Sql2008\mssqlserver ',
@value_name = ' BackupDirectory ',
@BackupDirectory = @BackupDirectory OUTPUT
SELECT @BackupDirectory


To modify the user library data file default path:
EXEC Master.. Xp_regwrite
@rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql10. Sql2008\mssqlserver ',
@value_name = ' Defaultdata ',
@type = ' REG_SZ ',
@value = ' D:\SQL2008\Data '

Modify User library log file default path:
EXEC Master.. Xp_regwrite
@rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql10. Sql2008\mssqlserver ',
@value_name = ' Defaultlog ',
@type = ' REG_SZ ',
@value = ' D:\SQL2008\Log '

To modify the default path for user library backup files:
EXEC Master.. Xp_regwrite
@rootkey = ' HKEY_LOCAL_MACHINE ',
@key = ' Software\Microsoft\Microsoft SQL server\mssql10. Sql2008\mssqlserver ',
@value_name = ' BackupDirectory ',
@type = ' REG_SZ ',
@value = ' D:\SQL2008\DBBak '



Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.