I'm calling MySQL stored Procedure, which will return ErrorMesg as the status of procedure as output. How to get that ErrorMsg on to clipboard page for the below query?
I'm calling MySQL stored Procedure, which will return ErrorMesg as the status of procedure as output. How to get that ErrorMsg on to clipboard page for the below query?
DECLARE @tab AS TABLE (ErrorMsg VARCHAR(100))
INSERT into @tab Exec dbo.InsertOrUpdate
@name ={UploadDataPage.Name},
@EffBeginDt ={UploadDataPage.EffectiveStartDate},
@EffEndDt = {UploadDataPage.EffectiveEndDate},
***Updated by moderator: Lochan to add Categories***