spMFSynchronizeValueList¶
Signature¶
EXEC dbo.spMFSynchronizeValueList
@VaultSettings = N'<settings>',
@Debug = 0,
@Out = NULL OUTPUT,
@IsUpdate = 0;
Returns¶
INT: 1 on success; -1 on error.
Parameters¶
- @VaultSettings
Type: NVARCHAR(4000)
Required: Yes
Description: Vault login credentials (comma-separated string).
- @Debug
Type: SMALLINT
Required: No (default = 0)
Description: Debug level. - 1 = Standard Debug Mode
- @Out
Type: NVARCHAR(MAX)
Required: No (OUTPUT)
Description: Output of spMFInsertProperty.
- @IsUpdate
Type: SMALLINT
Required: No (default = 0)
Description: When set to 1 the procedure performs a full update.
Purpose¶
This is an internal procedure and is part of the metadata synchronisation process
Examples¶
Changelog¶
Date |
Author |
Description |
2024-06-05 |
LC |
add processbatch_id for logging |
2019-08-30 |
JC |
Added documentation |
2016-09-26 |
DevTeam2 |
Removed vault settings parameters and pass them as comma separated sting in @VaultSettings |
2018-04-04 |
DevTeam2 |
Added License module validation code. |