Not sure if anyone in here knows the answer to this, but I asked in a SQL
group and haven't had a suitable answer and since the front end app is ASP I
though I'd give here a try.
I am trying to create a simple trigger in my SQL DB so that when a record is
updated or deleted a copy of the original record is placed in an audit
table.
However, I keep getting the following error:
Server: Msg 311, Level 16, State 1, Procedure SYS_Individual_AUDIT_Trigger,
Line 9
Cannot use text, ntext, or image columns in the 'inserted' and 'deleted'
tables.
Now apparently this is because the TEXT column I have cannot be 'logged' or
so someone told me.
Is there any way of using a trigger (an idiot proof way) so that I can copy
a record to an audit table when it is updated/deleted if the record contains
one or more TEXT columns?
If all else fails I will write it into my app but I am trying to avoid that
if possible.
Thanks