Tuesday, August 9, 2011
Stored Procedure Optimzation tips
1).Use NOCOUNT:
Include the SET NOCOUNT ON statement into your stored procedures to stop the message indicating the number of rows affected by a Transact-SQL statement.
2).Use return values:
Consider returning the integer value as an RETURN statement instead of an integer value as part of a recordset
3).Try to avoid using temporary tables inside your stored procedure.
4).Use SQL Server Profiler to determine which stored procedures has been recompiled too often.
5).Use sp_executesql stored procedure instead of temporary stored procedures.
Saturday, August 6, 2011
Difference between stored procedure and function
1) Procedure can return zero or n values whereas function can return one value which is mandatory.
2) Procedures can have input, output parameters for it whereas functions can have only input parameters.
3) Procedure allows select as well as DML statement in it whereas function allows only select statement in it.
4) Functions can be called from procedure whereas procedures cannot be called from function.
5) Exception can be handled by try-catch block in a procedure whereas try-catch block cannot be used in a function.
6) We can go for transaction management in procedure whereas we can't go in function.
7) Procedures cannot be utilized in a select statement whereas function can be embedded in a select statement.
Subscribe to:
Posts (Atom)