USEFUL SITES :
Write for Us
Error Message:Msg 16805, Level 11, State 1, Procedure sp_makewebtask, Line 131SQL Web Assistant: Could not execute the SQL statement.
Severity level:11.
Description:This error message appears when you try to call the procedure sp_makewebtask with an invalid SQL statement.
Consequences:The T-SQL statement can be parsed, but causes the error at runtime.
Resolution:Errors of the Severity Level 11 are generated by the user and are corrigible by the user. The statement cannot be executed this way. You must specify a valid SQL statement.
Versions:All versions of SQL Server.
Example(s):EXEC sp_makewebtask 'D:\test.html', 'SELECT * FROM Northwind..dbo.Orders'
Remarks:In the above example we try to call the sp_makewebtask procedure with a SQL statement which uses the 4 part naming convention. In a default installtion there is no such linked server and the error is raised.