Database Optimization Techniques to Increase SQL SERVER Performance – Part I – Increase SQL Server stored procedure performance
May 19, 2009 0 comments1) Increase SQL Server stored procedure performance with following three tips:
Stored procedures play a vital role in enhancing the performance of the database. The following three tips will help us to maximize database performance when stored procedures are used.
Use NOCOUNT:
If NOCOUNT option is turned off, on each operation: stored procedures returns information concerning the number of rows affected and it increases network overhead. By default, the Option NOCOUNT will be turned off. If we turn on NOCOUNT option, stored procedures will block row count information so that it will reduce the network overhead occupied with information communication to the user.
Use return values:
Queries are used to validate information or to return a single value. The return value of stored procedure can be used to retrieve a single value from a query and mainly useful when inserting a new record. The information necessary for retrieval is the primary key value. Place the statement “RETURN <value>” at the end of the query to utilize the return value in stored procedure.
Optimize table access with NOLOCK:
Transaction safety is not mandatory for most of the database access. This is apparent in MySQL database product that it does not contribute any record locking capability. Any access to a database table or a stored procedure in SQL will make tremendous performance gains when a table hint is used, which lets the SQL engine ignore and not perform locks for a given function.
Related Posts
-
October 30, 2024
React + Next + Laravel + MySQL – Web application Tech Stack for custom web apps
Demystifying Our Web application Tech Stack: React + Next + Laravel + MySQL - The Powerhouse Behind Your Web Applications at Macronimous At Macronimous, we believe in creating custom web applications that are not just functional, but also built to last and scale with your business. To achieve this, we carefully select technologies
Macronimous, Laravel, PHP Programming, React, Web Development0 comments -
April 18, 2008
4 Web collaboration tools
Did you ever wonder how to work efficiently with your offshore team. I am sure you wish to have some better mechanisms than simple emails back and forth. When you like your customers to interact with your team, without spending much of your time, But at the same if you


