Fine Tuning Stored Procedures
1. Use SET NOCOUNT ON SQL Server return information messages when running statements thus increasing network traffic. These messages can be suppressed by setting the NOCOUNT ON to decrease network traffic. 2. Use fully qualified procedure name A fully qualified object name is server.database.schema.objectname. SQL Server can swiftly find the complied plan instead of looking... » read more