Hi,I have an issue here. I have created a FOR INSERT,UPDATE trigger which will generate a new password and update on the password col when col LastReset is inserted or updated with current time. The issue is, this trigger only work when you issue a one row statement. When you issue a bulk insert like "UPDATE tblA set col1='bla' where id in (select id from tblA where col2 is not null)" this will in fact update the password col with the first password generated.My guess is that for bulk insert, after each insert statement, the trigger should fire. Or otherwise?the trigger is as follow:CREATE TRIGGER ResetPwd_tblLogins_byInsertUpdate ON tblLogins --this trigger generate/reset a new passwordfor INSERT,updateAS --this is a password reset if update (LastReset) begin declare @pwd as varchar(8) EXEC sprocRandomPassword 8, 8, @pwd OUTPUT update tblLogins set Password=@pwd from inserted where tblLogins.id=inserted.id set @pwd='' end