USP_EMAILJOB_SETMERGEVIEWID
Sets the merge view ID of an email job.
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @EMAILJOBID | int | IN | |
| @MERGEVIEWID | uniqueidentifier | IN |
Definition
Copy
create procedure dbo.USP_EMAILJOB_SETMERGEVIEWID
(
@EMAILJOBID int,
@MERGEVIEWID uniqueidentifier
)
as
begin
update dbo.EMAILJOB
set MERGEVIEWID = @MERGEVIEWID
where ID = @EMAILJOBID
end