Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 5 of 5

Thread: Removing old orders to reduce database size

  1. #1
    wlk13 is offline Junior Member
    Join Date
    Jan 2009
    Posts
    16

    Default Removing old orders to reduce database size

    Hi, how can I remove all orders before a certain date from the store database. Our store database has grown very large and I would like to reduce it.
    Also, it would also be great if I can remove all customers from the database that have not ordered from us within the last year or so.

    Thanks

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    The monthly maintenance module in the admin might help you do the cleaning.

  3. #3
    wlk13 is offline Junior Member
    Join Date
    Jan 2009
    Posts
    16

    Default

    I have done the Monthly Maintenance many times, however none of the options let me permanently remove older orders from the store.
    Is it possible to delete all the records of older orders - for example, all orders before January 1, 2010 - as it is just taking up extra memory and resources on the server.

  4. #4
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    The following SQL statements will clear those orders out. Make sure you have a good backup of your database before making changes to it!

    NOTE: These statements assume that you want to remove ALL orders before "lastordernumbertokeep." If that is not the case, you may need to edit these statements.

    DELETE FROM Orders WHERE OrderNumber < lastordernumbertokeep
    DELETE FROM Orders_CustomCart WHERE OrderNumber < lastordernumbertokeep
    DELETE FROM Orders_KitCart WHERE OrderNumber < lastordernumbertokeep
    DELETE FROM Orders_ShoppingCart WHERE OrderNumber < lastordernumbertokeep

    RUN THE SQL STATEMENTS ABOVE AT YOUR OWN RISK! BE CAREFUL! IF YOU DO NOT HAVE EXPERIENCE WITH SQL AT ALL, FIND SOMEONE THAT CAN DO IT FOR YOU.

  5. #5
    webopius is offline Senior Member
    Join Date
    Nov 2008
    Location
    London, UK
    Posts
    440

    Default

    Hi

    Are you absolutely sure it's the orders table that is making your database size large? I'd be very wary of deleting old orders and would be looking at these areas first:

    - Truncating the database transaction log
    - Having done the above, run a Shrink task in Management Studio to reduce database/file size
    - Running a report in SQL Server to see which tables are consuming the most space
    - Looking at tables such as searchlog and profile to make sure they aren't excessive

    Adam