• Rudyx - the Doctor (7/26/2016)


    declare @CoverUp varchar(16)

    select @CoverUp = ['True'|'False'] --> make your choice

    if CoverUp = 'True'

    begin

    exec sp_update_resume @parm_make_backup_copy='Yes'

    exec sp_send_resume @parm_email_address='some.headhunter@any_corp.com'

    exec sp_pack_up_yourdesk @parm_priority='Immediately'

    end

    --> exit the building

    That would be a t-sql for URAR (update resume and relocate)

    😎