Modify the SQL Server default path

Source: Internet
Author: User
Tags microsoft sql server mssqlserver backup

/*

Note: If the value returned by the query path is NULL, the default installation path is

C:\Program Files\Microsoft SQL Server\mssql10_50.mssqlserver\mssql\data

*/

--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_50.mssqlserver\mssqlserver ',

@value_name = ' Defaultdata ',

@DefaultData = @DefaultData OUTPUT

SELECT @DefaultData

Go

--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_50.mssqlserver\mssqlserver ',

@value_name = ' Defaultlog ',

@DefaultLog = @DefaultLog OUTPUT

SELECT @DefaultLog

Go

--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_50.mssqlserver\mssqlserver ',

@value_name = ' BackupDirectory ',

@BackupDirectory = @BackupDirectory OUTPUT

SELECT @BackupDirectory

Go

--Modify the user library data file default path:

EXEC Master.. Xp_regwrite

@rootkey = ' HKEY_LOCAL_MACHINE ',

@key = ' Software\Microsoft\Microsoft SQL server\mssql10_50.mssqlserver\mssqlserver ',

@value_name = ' Defaultdata ',

@type = ' REG_SZ ',

@value = ' C:\test\data '

Go

--Modify User library log file default path:

EXEC Master.. Xp_regwrite

@rootkey = ' HKEY_LOCAL_MACHINE ',

@key = ' Software\Microsoft\Microsoft SQL server\mssql10_50.mssqlserver\mssqlserver ',

@value_name = ' Defaultlog ',

@type = ' REG_SZ ',

@value = ' C:\test\log '

--Modify User library backup file default path:

EXEC Master.. Xp_regwrite

@rootkey = ' HKEY_LOCAL_MACHINE ',

@key = ' Software\Microsoft\Microsoft SQL server\mssql10_50.mssqlserver\mssqlserver ',

@value_name = ' BackupDirectory ',

@type = ' REG_SZ ',

@value = ' D:\test\backup '

Go

See more highlights of this column: http://www.bianceng.cnhttp://www.bianceng.cn/database/SQLServer/

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.