Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error 16882 Web Task not found

Status
Not open for further replies.

2ni

Programmer
Mar 21, 2002
36
FR
i try to run a web task i create in SQL 2000
it works when i write this :

EXEC sp_runwebtask N'CREATE_MAIL'

but if i want to specify the outputfile like this :

EXEC sp_runwebtask N'CREATE_MAIL', N'D:\mail2.eml'
or
EXEC sp_runwebtask 'CREATE_MAIL', 'D:\mail2.eml'
or
EXEC sp_runwebtask @procname=N'CREATE_MAIL', @outputfile=N'D:\mail2.eml'


SQL return me an error 16882 Web Task not found.
Someone can help me ??
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top