I always use SET NOCOUNT ON statement in all my sprocs to improve performance (as stated in the BOL). By Default, the NOCOUNT is set to OFF, I'm just wondering if there is a way to predefine NOCOUNT ON as the default, so that I don't have to worry if someone forgot to put that directive when writing a sproc. Is this possible?