博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xp_instance_regwrite syntax
阅读量:6434 次
发布时间:2019-06-23

本文共 889 字,大约阅读时间需要 2 分钟。

The stored procedure "master.sys.xp_instance_regwrite" is not documented in SQL Server Books Online (BOL), but is usefull. In general the syntax is

EXECUTE [master].[sys].[xp_instance_regwrite]
  @rootkey = N'<name of root key>'
 ,@key = N'<key name>'
 ,@value_name = N'<key name value>'
 ,@type = N'<key type>'
 ,@value = <key value>;
For example the number of SQL Server Errorlog files can be updated by the statement
EXECUTE [master].[sys].[xp_instance_regwrite]
  @rootkey = N'HKEY_LOCAL_MACHINE'
 ,@key = N'Software\Microsoft\MSSQLServer\MSSQLServer'
 ,@value_name = N'NumErrorLogs'
 ,@type = N'REG_DWORD'
 ,@value = 42;

Use with caution!

The parameter @type takes a value without N'' around (@type = <key type>), but I like the Unicode framing. This way I try to avoid difficulties when building the values outside the call.

转载于:https://www.cnblogs.com/flysun0311/archive/2012/08/28/2660021.html

你可能感兴趣的文章
理解MySQL——索引与优化
查看>>
JFinal教程1——小白的第一个JFinal程序
查看>>
调用startActivityForResult后,onActivityResult立刻响应,返回当
查看>>
spring boot 源码分析(四) 配置文件加载4 之 ConfigFileApplicationListener
查看>>
分享30个开发人员有用的CSS代码片段
查看>>
Sysprep的那些事
查看>>
openfire smack包聊天室
查看>>
The Syntax of Funs
查看>>
基于反射做的对象比对
查看>>
java 代码改动一点点,eclipse 老是自动重新加载的解决方案
查看>>
RxJava学习笔记
查看>>
Java 多线程 - 线程 - 中断
查看>>
At first!
查看>>
python学习系列之python装饰器基础(2)---装饰含返回值的函数
查看>>
神奇的负载均衡
查看>>
kubernetes log 流式数据处理
查看>>
d3.js——对柱状图和折线图的封装
查看>>
sqlserver2008使用设置sa用户登录步骤
查看>>
我的友情链接
查看>>
MYSQL外键(Foreign Key)的使用
查看>>