Update whole table fast
exec <PROCEDURE_NAME> 'PARAM1' 'PARAM2';Begin
    declare @now datetime2 = sysdatetime();
    print 'Exported all data from TABLENAME table at system time=' + convert(char(20), @now, 121)
    select * from TABLENAME
EndLast updated