What is the purpose of the sc_cart table and why is it so large and is there a way to truncate it?Summarysc_cart table is very large and has too many records. 1) Are these records really saved shopping carts?2) If not, what is the purpose of this table?3) Is there an automated purge or clean up?4) If not, can they be purged?InstructionsQuestions 1 and 2 are answered as per the below community link :https://community.servicenow.com/community?id=community_question&sys_id=6421840edb2a67006c1c02d5ca96197b sc_cart is the table which maintains your cart information. Every user will have an entry in the sc_cart table if he has added to the cart at least once. It stores details like requested for, shipping address etc. It has a related list (sc_cart_item ) which contains all the items which are added to the cart. Once the items are submitted, the sc_cart_item gets empty but sc_cart entry still stays for a user and is created at the first insert. Regarding questions 3 and 4: - There is no automated purge or clean up available. - Cleaning them doesn't break the product but be sure that deleting them might delete the items added to bundles, wishlists and ongoing carts. You can however delete the Carts with no Cart Items. To find out those from querying the cart item (sc_cart_item) table.