FIX: Insert View with DEFAULT VALUES Causes AVLast reviewed: May 2, 1997Article ID: Q149711 |
The information in this article applies to:
SYMPTOMSAn insert performed on a view with the option DEFAULT VALUES can result in a thread level Access Violation. The following provides an example where the Access Violation would occur:
CREATE TABLE ta (col1 CHAR(1) NULL DEFAULT 'a') GO CREATE VIEW vi AS SELECT * FROM ta GO INSERT INTO vi DEFAULT VALUES GO WORKAROUNDPerform the insert with the option DEFAULT VALUES on the base table rather than through the view.
STATUSMicrosoft has confirmed this to be a problem in Microsoft SQL Server version 6.0. This problem has been corrected in U.S. Service Pack 3 for Microsoft SQL Server version 6.0. For more information, contact your primary support provider.
|
Additional query words: sql6 default values insert
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |