Viewing 7 posts - 1 through 8 (of 8 total)
I did not change anything. I did not solve the problem. I got around it by opening the table and editing it manually instead of executing sql against it.
August 20, 2007 at 12:23 pm
the problem was i couldn't run sql statements that explicitly referenced that column.
August 20, 2007 at 12:10 pm
I've resolved this by manually editing the table, thanks for your time guys.
August 20, 2007 at 10:11 am
There are no other triggers on the table. The query I'm trying to run is what I posted just with the user name and password changed. The query is not...
August 20, 2007 at 9:20 am
there's a trigger called tu_users on the table but i don't know if it's responsible for the error.
Here's the trigger code:
USE
[My_Database]
GO
/****** Object: Trigger [dbo].[tu_users]...
August 20, 2007 at 9:08 am
i'm trying to execute:
update
users
set
password = 'myPassword',
active_flag
= 'Y'
August 20, 2007 at 8:51 am
Viewing 7 posts - 1 through 8 (of 8 total)