BUG: An Insert statement that uses a function to parse a string may receive error message 8626 (313474)
The information in this article applies to:
- Microsoft SQL Server 2000 (all editions) SP1
- Microsoft SQL Server 2000 (all editions) SP2
This article was previously published under Q313474 BUG #: 356268 (SHILOH_BUGS) SYMPTOMS If you execute an INSERT statement that includes a user
defined function in the Values list, this error message may occur:
Server: Msg 8626, Level 16, State 1, Line 5 Only
text pointers are allowed in work tables, never text, ntext, or image columns.
The query processor produced a query plan that required a text, ntext, or image
column in a work table. The error message may occur when the
following conditions are true:
- The table on which you execute the INSERT statement has at
least one column of type text that allows NULL values.
- The user defined function has a return value of type varchar, char, nvarchar or nchar.
- The column that receives the output of the user defined
function is of type text or ntext.
WORKAROUND To work around this problem assign the result of the user
defined function to a variable, and then use that variable in the INSERT
statement. For example:
Declare @variable1 char(300)
set @variable1 = 'Inserted Value'
set @variable1 = dbo.fnRtnChar(@variable1)
INSERT Table1(Col1, Col2)
VALUES(1, @variable1)
STATUSMicrosoft has confirmed that this
is a problem in Microsoft SQL Server 2000.
Microsoft is researching this problem and will post more
information in this article when the information becomes
available.
Modification Type: | Major | Last Reviewed: | 7/13/2004 |
---|
Keywords: | kbbug kbpending KB313474 |
---|
|