Notifications
Clear all
Topic starter
Is there some way to keep Centricity from removing providers previous schedules for longer than a month?
Posted : June 21, 2018 6:34 am
Our techs have done this in the past, here is a copy of the script we have used. I think this shows the change to 365 days. I have not personally used this as I am not the SQL person.
select OtherLong, *
FROM MedLists
WHERE TableName = 'SlotHistoryDays'
begin tran
update MedLists set OtherLong ='365'
where TableName = 'slothistorydays'
--commit tran
I hope this helps you.
Posted : June 21, 2018 6:42 am
You can always view previous schedules in the list view.
Posted : June 21, 2018 7:16 am
Topic starter
thank you both
Posted : June 27, 2018 1:49 am