Viewing 3 posts - 1 through 4 (of 4 total)
You were right on the money, Ian. I replaced all of the double quotes with single quotes, and it worked. Thanks for your help.
Tyler
August 6, 2009 at 9:52 am
Elliot,
Thank you for the quick response. Below is the trigger and UPDATE statement that I created as an attempt:
Use Contact_Management
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TRIGGER trUp_Customer_View on Customer_View
INSTEAD OF...
August 6, 2009 at 8:20 am
After further research, I discovered that the INSTEAD OF trigger is what I needed to use in order to enable me to insert data into the underlying tables of a...
June 19, 2009 at 5:49 pm
Viewing 3 posts - 1 through 4 (of 4 total)