Performance Implications of Comments in SQL Stored Procedures - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T18:06:05Zhttp://stackoverflow.com/feeds/question/697941http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/697941/performance-implications-of-comments-in-sql-stored-procedures5Performance Implications of Comments in SQL Stored ProceduresMitchel Sellers2009-03-30T16:27:04Z2009-09-09T05:02:20Z
<p>Recently at my day-job were were instructed that any comments regarding our stored procedures MUST NOT exist inside the stored procedure and rather Extended Properties must be used.</p>
<p>In the past we used something like this.</p>
<pre><code>/*
* NOTE: Auto-Generated Procedure DO NOT MODIFY
*/
CREATE PROCEDURE dbo.MyProc
AS
SELECT *
FROM MyTable
GO
</code></pre>
<p>This way anytime anyone opened the procedure in SSMS they would see the note, other comments also existed in procedures to document our process. Now I was not aware of any performance/memory issues with this. However we have individuals that insist it does.</p>
<p>I have not been able to find any documentation to prove or deny the existance of performance and/or memory issues with this type of comments.</p>
<p>So my question is, does anyone know of any documentation that can either prove or deny this?</p>
http://stackoverflow.com/questions/697941/performance-implications-of-comments-in-sql-stored-procedures/697957#69795710Answer by Jon Skeet for Performance Implications of Comments in SQL Stored ProceduresJon Skeet2009-03-30T16:31:54Z2009-03-30T16:31:54Z<p>It will slow down the compilation of the stored procedure just a tiny bit, and that shouldn't happen often anyway.</p>
<p>Basically this sounds like scare-mongering. Given how useful comments can be (in moderation) I would demand <em>evidence</em> that comments hurt performance. It sounds like a ridiculous policy to me.</p>
<p>(Demanding evidence any time someone makes claims about performance is a good general rule - <em>particularly</em> if they're suggesting that you sacrifice readability or some other positive attribute for the sake of the supposed performance gain.)</p>
http://stackoverflow.com/questions/697941/performance-implications-of-comments-in-sql-stored-procedures/697983#6979833Answer by gbn for Performance Implications of Comments in SQL Stored Proceduresgbn2009-03-30T16:38:26Z2009-03-30T16:38:26Z<p>The text (including comments) is stored in sys.sql_modules in SQL 2005+. So it adds to the system table size.</p>
<p>On compilation to produce a plan, the comments are ignored: they are comments. Just like any reasonable language...?</p>
<p>However, in some circumstances <a href="http://social.msdn.microsoft.com/Forums/en-US/transactsql/thread/38591987-1ff2-4f5b-b1ee-1300c7c039cb/" rel="nofollow">debug comments</a> can apparently still be parsed and affect things.</p>
<p>This is something I saw a while ago but dismissed it (and searched for it for this answer). </p>