Viewing 7 posts - 1 through 7 (of 7 total)
Ahhh, this was resolved by changing the username to lowercase - thanks
September 27, 2024 at 11:34 am
I have followed the instructions and set the postgres folder with full control for the Users group under Security but get the following error when upgrading from 15 to 16..
Performing...
September 27, 2024 at 11:24 am
Thanks lowell, heres the trigger...
Note: addedd an extra ' to the code line
'select getdate(),replace(suser_sname(),'ukdngroup\'',''),'
as was not displaying colors correctly on this site.
Correct code =
'select getdate(),replace(suser_sname(),'ukdngroup\',''),'
ALTER...
September 1, 2010 at 5:41 am
I think it would work quicker if the trigger send the inserted and deleted tables to a stored procedure. Then the trigger would be free and the stored procedure...
August 26, 2010 at 8:56 am
How would I write a routine to return previously modified field values inc user and date/time?
August 26, 2010 at 8:31 am
Thanks John...
I have to use temp tables as the trigger tables (inserted and deleted) are not visible when using dynamic sql.
I did originally send all row data from...
August 26, 2010 at 8:04 am
I have managed to get the correct data to write to the audit table by placing the IF EXISTS clause and the UPDATE statement within the same dynamic sql. ...
August 26, 2010 at 3:38 am
Viewing 7 posts - 1 through 7 (of 7 total)