我需要知道存储过程master.dbo.xp_instance_regread
中参数的定义。
存储过程看起来像这样
DECLARE @path NVARCHAR(4000)
EXEC master.dbo.xp_instance_regread
N'HKEY_LOCAL_MACHINE',
N'Software\Microsoft\MSSQLServer\MSSQLServer',
N'BackupDirectory',
@path OUTPUT, 'no_output'**--what is this string for?**
select @path
我的问题是除了@path OUTPUT
之外还有一个字符串的目的是什么?
我所指的字符串是' no_output'在存储过程中。