Test SQL Server execution time and CPU time

Source: Internet
Author: User

It can be used to test the performance of SQL statements or stored procedures.

Checkpoint   -- Used to check the changed data pages or log pages in the current working database, and forcibly write the data from the data buffer to the hard disk.
Go
DBCC Freeproccache -- Delete all buffers from the buffer pool
DBCC Dropcleanbuffers -- Delete all elements from the process Cache
Go
DBCC Freesystemcache ( ' All ' ); -- Clear the scheduler cache of an SQL instance
Go
Set   Statistics Io On
Set   Statistics Time On
Go
  -- -------------------------
  Declare   @ B   Datetime
  Declare   @ E   Datetime
  Set   @ B   =   Getdate ();
  Select   Count ( * ) From Test1;
  Set   @ E   =   Getdate ();
  Select   Datediff (MS, @ B , @ E )
  -- --------------------------
  Set   Statistics Io Off
  Set   Statistics Time Off
  Go
  DBCC Dropcleanbuffers
  DBCC Freeproccache

 

 

The execution result is as follows :---------------------------------------------------------

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.