Viewing 15 posts - 61 through 75 (of 104 total)
Having the full history isn't as important as being able to see what was just changed, but obviously I can give them the option of both which is at the...
September 6, 2011 at 1:15 pm
Sean Lange (9/6/2011)
david.holley (9/6/2011)
Sean Lange (9/6/2011)
September 6, 2011 at 12:33 pm
Roy Ernest (9/6/2011)
September 6, 2011 at 12:19 pm
Sean Lange (9/6/2011)
September 6, 2011 at 12:13 pm
Roy Ernest (9/6/2011)
September 6, 2011 at 12:07 pm
The example that I posted is only the section that handles the Deletes, another section will handle Inserts with another handling Edits. The trigger is designed to work AFTER INSERT,...
September 1, 2011 at 4:54 pm
It'll be more along the lines of this...
INSERT INTO
ProjectInformationChangeLog
(Action, Element, WindowsUserId, DateTimeStamp, SQLServerTable, ShowNumber)
SELECT ShowNumber,'Delete', 'General Information', SYSTEM_USER, SYSDATETIME(), OBJECT_NAME(@@PROCID) From deleted GROUP BY ShowNumber WHERE ProjectNumber In (Select...
September 1, 2011 at 2:44 pm
Sean Lange (9/1/2011)
david.holley (9/1/2011)
September 1, 2011 at 2:19 pm
In the original conceptualization, I was going to use the sp to create a record in the ChangeLog and then capture the values of the record before & after the...
September 1, 2011 at 11:31 am
Your Name Here (8/26/2011)
August 26, 2011 at 11:14 am
Sean Lange (8/25/2011)
August 25, 2011 at 1:50 pm
Since the data is essential dead end and won't have any relationships to external tables, would you recommend going with varchar for the datatypes? Unicode characters won't be applicable. The...
August 25, 2011 at 11:50 am
Sean Lange (8/25/2011)
August 25, 2011 at 8:23 am
Thanks yall for the input here the general direction that I'm going. There are still some things to hammer and fine tune such as denormalizing the _Audit tables. (The fact...
August 25, 2011 at 6:30 am
It just occurred to me that I'll have to use the stored proc to capture the before and after records and not use triggers at all. Since I have a...
August 24, 2011 at 10:07 am
Viewing 15 posts - 61 through 75 (of 104 total)