How to clear cache of the sql server 2000

  • hi good morning

    need help

    in production server

    when the application is started the sql server 2000 is using approximatly 2 gb of ram and is hanging can you please suggest us something

    how can we clear cache

    please suggest us

    thank you

  • Haven't tried but i think this will help

    --Clearing Cache for SQL Server Performance Testing

    USE ;

    GO

    CHECKPOINT;

    GO

    DBCC DROPCLEANBUFFERS;

    GO

    Tanx 😀

  • DBCC FREEPROCCACHE

    DBCC DROPCLEANBUFFERS

    /************************/

    To Verify whether it has done the job..

    DBCC PROCCACHE

    The values displayed will be in single digits ( if only the current user is connected ).

    Please handle with care while do it production servers..

    Gen, I use it only when I am doing performance tuning

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply