tempo1
Programmer
- Feb 20, 2007
- 118
Hi everyone,
i run the following code (xp_sendmail)
And any way i run it i get the same error message:
thanks
i run the following code (xp_sendmail)
Code:
CREATE TABLE ##texttab (c1 text)
INSERT ##texttab values ('Put your long message here.')
DECLARE @cmd varchar(56)
SET @cmd = 'SELECT c1 FROM ##texttab'
EXEC master.dbo.xp_sendmail 'robertk',
@query = @cmd, @no_header= 'TRUE'
DROP TABLE ##texttab
Anyone can tell me hw to supply that "@user" missing parameter and what is it ?xp_sendmail: Procedure expects parameter @user, which was not supplied.
thanks