List history all the persons who modified database

 
Parents
  • [QUOTE=tomek;85657]queries by other pseudo attributes ... q hist will give you numbers of sessions. Then you can query for each of them e.g.
    Q sessdate 121
    Q sessuser 129
    etc.
    Thank tomek... Based on your idea. i write simply marco to do it. I tested and so useful:
    q ce
    var !his history
    !hisnumarr=!his.split()
    do !i value !hisnumarr
      var !sessuser sessuser $!i
      var !sessdate sessdate $!i
      q '$!sessuser -- $!sessdate'
    enddo
Reply
  • [QUOTE=tomek;85657]queries by other pseudo attributes ... q hist will give you numbers of sessions. Then you can query for each of them e.g.
    Q sessdate 121
    Q sessuser 129
    etc.
    Thank tomek... Based on your idea. i write simply marco to do it. I tested and so useful:
    q ce
    var !his history
    !hisnumarr=!his.split()
    do !i value !hisnumarr
      var !sessuser sessuser $!i
      var !sessdate sessdate $!i
      q '$!sessuser -- $!sessdate'
    enddo
Children