I ran the following command:
select * from micros.chk_dtl
order by chk_open_date_time
It shows that I have 500 checks open. There is one old one from Aug.11/16, and the rest of the transactions range from Mar. 10 to Mar.24, 2017. How do I get rid of these troublesome checks?
I ran: call micros.sp_purgehistory
because I was getting warning messages that 1458 checks hadn't been purged. I had to run it a lot of times before I got that purge check warning to stop, but it finally did. However, these checks are still showing as open.
I ran: select count(*) from micros.trans_dtl
and it shows that I have 14679 -- that number does not go down after running call micros.sp_purgehistory
Shouldn't it be going down?
Can anyone help me please?
TIA
select * from micros.chk_dtl
order by chk_open_date_time
It shows that I have 500 checks open. There is one old one from Aug.11/16, and the rest of the transactions range from Mar. 10 to Mar.24, 2017. How do I get rid of these troublesome checks?
I ran: call micros.sp_purgehistory
because I was getting warning messages that 1458 checks hadn't been purged. I had to run it a lot of times before I got that purge check warning to stop, but it finally did. However, these checks are still showing as open.
I ran: select count(*) from micros.trans_dtl
and it shows that I have 14679 -- that number does not go down after running call micros.sp_purgehistory
Shouldn't it be going down?
Can anyone help me please?
TIA