HI,this is what i have now:GO/****** Object: Trigger [dbo].[trg_SourceHistory] Script Date: 03/08/2011 14:38:08 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER TRIGGER [dbo].[trg_SourceHistory] ON [dbo].[tblSource]for UPDATEAS begin tryINSERT INTO tblHistorySourceselect *, getdate()from [DELETED]end trybegin catchSELECTERROR_NUMBER() AS ErrorNumber,ERROR_SEVERITY() AS ErrorSeverity,ERROR_STATE() AS ErrorState,ERROR_PROCEDURE() AS ErrorProcedure,ERROR_LINE() AS ErrorLine,ERROR_MESSAGE() AS ErrorMessage;RAISERROR('Error in Source Hisotry Trigger' ,16,1)ROLLBACK TRANEND CATCHbut i keep getting the following error: Insert Error: Column name or number of supplied values does not match table definition.i was thinking that maybe it would be a good idea to write out all the fields in the trigger to make sure everythign matches up, but i can't seem to figure out the format to do so.insert into tblHistorySource (value1, value2) values (value1, value2)where do i put this???Thank you in advance!