fnMFVaultSettings¶
Signature¶
dbo.fnMFVaultSettings()
Returns¶
NVARCHAR(400): Comma-delimited vault connection settings string for use by CLR/integration procedures.
Parameters¶
None
Purpose¶
Return the vault settings string containing the values needed by procedures that require the VaultSettings parameter.
Examples¶
DECLARE @VaultSettings NVARCHAR(400);
SET @VaultSettings = dbo.fnMFVaultSettings();
Changelog¶
Date |
Author |
Description |
2021-12-20 |
LC |
Add guid to vault settings string |
2019-08-30 |
JC |
Added documentation |
2016-09-14 |
DEV2 |
Initial Version - QA |