- Use Nocount at the begining of all your Stored procedures,Functions and Triggers
This intensifies when we have many operations(Insert,Update,Delete) in a stored procedure.That means each operation returns internal message within the stored procedure execution cycle.
so, we can skip this intrenal messaging operation and make our application performance faster?
YES!
using SET NOCOUNT ON in begining of your stored procedure.
No comments:
Post a Comment