Problematic Passwords

Is there a way to have a password not expire on a given username for a Tessitura login?

Parents
  • You need to update the pw_expr_dt column of t_metuser for a specific USERID.

     

    --sets expiration to 2 years from today

    update t_metuser

    set pw_expr_dt = dateadd(yy, 2, getdate())

    where userid = 'yourusername'

     

    From: Matt Gonzales [mailto:bounce-mattgonzales9808@tessituranetwork.com]
    Sent: Tuesday, November 13, 2012 11:16 AM
    To: Doug Jones
    Subject: [Tessitura Technical Forum] Problematic Passwords

     

    Is there a way to have a password not expire on a given username for a Tessitura login?




    This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!

Reply
  • You need to update the pw_expr_dt column of t_metuser for a specific USERID.

     

    --sets expiration to 2 years from today

    update t_metuser

    set pw_expr_dt = dateadd(yy, 2, getdate())

    where userid = 'yourusername'

     

    From: Matt Gonzales [mailto:bounce-mattgonzales9808@tessituranetwork.com]
    Sent: Tuesday, November 13, 2012 11:16 AM
    To: Doug Jones
    Subject: [Tessitura Technical Forum] Problematic Passwords

     

    Is there a way to have a password not expire on a given username for a Tessitura login?




    This message was sent automatically to you by www.tessituranetwork.com because you subscribed to the Tessitura Technical Forum. You may reply to this message to post to the Technical forum or visit the site to search, read and post to the forums. In the interest of keeping the forum posts from becoming cluttered, we encourage you to delete previous message text from your reply before sending. Thank you!

Children
No Data