SQL Web Assistant: @singlerow must be 0 or 1. Cannot specify this parameter with @nrowsperpage.

Error Message:
Msg 16829, Level 11, State 1, Procedure sp_makewebtask, Line 131
SQL Web Assistant: @singlerow must be 0 or 1. Cannot specify this parameter with @nrowsperpage.

Severity level:
11.

Description:
This error message appears when you try to call the procedure sp_makewebtask with an invalid value for the parameter @singlerow.

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 can be fixed by the SQL Server user. The statement cannot be executed this way. For the parameter @blobfmt you must specify a value of 0 or 1.

Versions:
All versions of SQL Server.

Example(s):
EXEC sp_makewebtask ‘D:test.html’,
 @query = ‘SELECT * FROM Northwind.dbo.Orders’,
 @fixedfont = 1,
 @bold = 1,
 @italic = 1,
 @colheaders = 1,
 @lastupdated = 1,
 @HTMLheader = 2,
 @whentype = 1,
 @unittype = 1,
 @targetdate = ‘20070910’,
 @targettime = 1,
 @dayflags = 1,
 @numunits = 1,
 @singlerow = 2

Remarks:
In the above example we try to call the sp_makewebtask procedure with the value 2 for the @singlerow parameter. This raises the error.

]]>

Leave a comment

Your email address will not be published.