FIX: Insert View with DEFAULT VALUES Causes AVID: 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 SSrvGen kbbug6.00 kbfix6.00.sp3
Version : 6.0
Platform : WINDOWS
Issue type :
Last Reviewed: March 25, 1999