Inactive membership...reactivate

Does anyone know how to reactivate an inactive membership? We have run into this issue trying to use the Membership Extend Expiry utility...but some of our memberships we need to extend are already inactive...

Parents
  • If you make a list of the folks you want this applied to and have ssms access you can run something like the following (you'll def want to change the dates below, this is just a quick example). 


    --UPDATE cm --uncomment to update
    --SET cm.expr_dt='2021-08-01 00:00:00' --uncomment to update
    SELECT cm.customer_no, cm.memb_level, '2021-08-01 00:00:00' AS new_expr, cm.expr_dt AS old_expr --comment out when updating
    FROM dbo.TX_CUST_MEMBERSHIP cm
    JOIN dbo.T_LIST_CONTENTS l ON l.customer_no = cm.customer_no
    WHERE l.list_no=24887 --insert your list of identified candidates here
    AND cm.memb_level IN ('SUP','PAR','FAM','ADV','SPN','AMB') --insert your levels here
    AND cm.expr_dt >= '2020-03-01 00:00:00' AND cm.expr_dt <= '2021-04-01 00:00:00' --expirations between march 1 2020 and midnight apr 1 2020
    AND cm.current_status IN (1,7) --inactive, lapsed

  • To run this, we'd need:

    the list of candidates,

    the dates to which we want the new expiration date changed,

    the abbreviations of the membership levels.



    Then the query updates the TX_CUST_Membership table with the new expiration dates, is that right? Would that be enough to re-activate? Is activation looking solely at expiration dates?

Reply Children