If the user test is set to DBO, and you run the update statement in SQL Query Analyzer. Why is the name not being updated? I get "(0 row(s) affected)"
This for SQL 2000 server
use test
update CUSTOMER_DATA
set first_name = 'test'
where last_name = 'stien' and customer_id = 777
Thanks!