I am unable to perform a delete on a View. Everything worked fine on the individual tables.
EDIT1: Added Trigger
CREATE TRIGGER myTrigger
ON [ViewName]
I
DELETE command: http://msdn.microsoft.com/en-us/library/ms189835.aspx
The view referenced by table_or_view_name must be updatable and reference exactly one base table in the FROM clause of the view. For more information about updatable views, see CREATE VIEW (Transact-SQL).
CREATE VIEW command, Updatable Views: http://msdn.microsoft.com/en-us/library/ms187956.aspx
Any modifications, including UPDATE, INSERT, and DELETE statements, must reference columns from only one base table.