sql server 2012 - Unknown stored procedure being called during update query -
i've got sql server 2012 table having field layout this:
(uid bigint, email varchar(64), password varchar(64))
when run query this:
update *tablename* set [password]="some_new_value" [uid]=1;
i error"
msg 208, level 16, state 1, procedure usermodify, line 16 invalid object name 'updated'.
normally, i'd have no problems fixing this, i'm not calling stored procedure, , there's no stored procedure in database called usermodify. i'm @ complete loss what's going on here. got ideas?
Comments
Post a Comment