Hi Everyone,
I am looking to create a trigger that will update a row or record right after that record has added to the database. We used to call this an after insert trigger.
Specifically, after the row has been inserted, I would like to have the uniqueidentifier field (named Contact_GUID) value put in a variable that will get the string equivalent of the variable and re-insert it into the same row (that field is called Str_Contact_GUID).
The reason I do this is that I can pass the string equivalent to other applications and still query the same row.
I know how to translate the uniqueidentifier into a string equivalent.(I have the code for that)
I only need the code to update the same row that would have been just inserted.
Thanks so much,
Jon