FIX: AV Selecting from VIEW with DISTINCT and JoinLast reviewed: June 27, 1997Article ID: Q161726 |
The information in this article applies to:
SYMPTOMSYou may receive a handled access violation (AV) when you attempt to select from a view that was created with a DISTINCT clause, and there is a natural JOIN between base tables inside a stored procedure. When the access violation occurs, you may find the following error message in the SQL Server errorlog:
spid10 EXCEPTION_ACCESS_VIOLATION raised, attempting to create symptom dump kernel The current contents of process' input buffer are 'exec myproc' WORKAROUNDTo work around this problem, place the SELECT statement of the stored procedure inside an EXEC() statement. For example, if the SELECT against the view was the following:
select * from viewChange the statement to:
exec("select * from view")Otherwise, move the query outside of the stored procedure, or avoid using the DISTINCT keyword in the view definition.
STATUSMicrosoft has confirmed this to be a problem in Microsoft SQL Server version 6.5 Service Pack 1 and 2. This problem has been corrected in U.S. Service Pack 3 for Microsoft SQL Server version 6.5. For more information, contact your primary support provider.
|
Additional query words: SP1 SP2
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |