USP_USERIMPORTMASTERLIST_CLEANSE
Definition
Copy
create procedure dbo.USP_USERIMPORTMASTERLIST_CLEANSE
as
begin
set nocount on;
update dbo.UserImportMasterList set Password = '' where Status=0 and not ClientUsersID is null;
end