HiIs there a table that keeps a record of every time a patron logs into your website? T_CUST_LOGIN contains last login date but I am looking for a table that would tell me patron X logged in on November 5 and November 6.ThanksJess LevySan Francisco Opera
Is not the easiest table to work, but some of this will be in T_WEB_SESSION_SESSION.
Thanks. I think that table will do the trick. My plan is to build a list element that looks at the StartDateTime.BestJess
Be wary: that table tends to get huge and can easily have performance issues, which means that Tessitura recommends aggressively purging it, limiting its historical value.
Excellent advice! Thank you!