FIX: Insert View with DEFAULT VALUES Causes AV |
Q149711
An 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
Perform the insert with the option DEFAULT VALUES on the base table rather than through the view.
Microsoft 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
Keywords : kbusage
Issue type : kbbug
Technology : kbSQLServSearch kbAudDeveloper kbSQLServ600
|
Last Reviewed: March 25, 2000 © 2001 Microsoft Corporation. All rights reserved. Terms of Use. |