The sum of all SQL Server matter that exist,
and the space in which all SQL Server events
occur or could occur.
Welcome to SQL Server Universe.com Sign in | Join | Help
in
Home SS SLUG Forums Articles Photos Downloads

Browse by Tags

All Tags » Performance   (RSS)
  • Measuring Performance of Stored Procedures

    This post is to discuss and rate the article Measuring Performance of Stored Procedures by Preethiviraj Kulasingham.[Poll]
    Posted to Articles at SQL Server Universe.com (Forum) by preethi on April 29, 2008
  • Re: CacheRemove

    Ok.  I believe the number is the main reason for the Remove Cache operation.  In fact when this number of deletes inserts happen, the statistics change drastically, and SQL Server will recompile the stored procedure always. If the statistics changes, It is good to include WITH RECOMPILE option in the stored procedure header so that it ...
    Posted to SQL Server Administration (Forum) by Preethi on April 17, 2008
  • Re: CacheRemove

    Hi Zahran,  Removing cache is not recommended (even though you can remove the cached plan). Plan caching increases the performance by reusing the same execution plan (instead of creating one for each execution).  Cache remove operation happens when the cache in memory become outdated.  If it is happening only once in a while, ...
    Posted to SQL Server Administration (Forum) by Preethi on April 16, 2008
  • M12D01 - Performance Optimization of Stored Procedures - Sample

    The sample codes used by Preethiviraj Kulasingham for the session titled Performance Optimization of Stored Procedures at the 12th SS SLUG meeting.
    Posted to Meeting 12 - Presentations & Samples (FileGallery) by gogula on March 31, 2008
  • Re: Stored Procedure Performance

    Hi,I doubt that this is related to some hardware resources like memmory or IO operation.''According to tests I have done the time gap expands as data volume goes up'', this is not a issue. It should go up when the volume goes up because it needs to read more pages and more resources.
    Posted to T-SQL (Forum) by dinesh on July 6, 2007
  • Re: Stored in a loop

    Hi,It depends on the way you have written the SP. This post may help you to find the problem.Use CURSOR whenever you have no other options for implementation. Most of the time, WHILE loop can be used instead CURSOR. If the above link does not help you on this, please let us know the content of the SP.
    Posted to T-SQL (Forum) by dinesh on July 6, 2007
Powered by Community Server, by Telligent Systems