how to delete from _Items table

11/26/2017 01:41 thebigbody#1
i have a server that has been opened since years
and now my table _Items -which there are huge operations on it- is kinda full
so when any operation is executing the table will take little long time to do it
any solution to delete "lines" from it to prevent this completion ?
11/26/2017 07:31 B1Q#2
Code:
update _Inventory set ItemID=0 where ItemID=ID64
update _ItemPool set ItemID=0 where ItemID=ID64
delete from _Items where ID64=ID64