Bad Code
Originally posted here on my personal journal.
/* **************************************** *******************************
Execute the sp_Whatever stored procedure
**************************************** ********************************/
Exec sp_Whatever
That comment contributes no information, and anyone reasonable familiar with Transact-SQL should be able to read the code line faster than that comment. Of course, since we normally expect comments to contain worthwhile information, both will get read.
/* ****************************************
Execute the sp_Whatever stored procedure
****************************************
Exec sp_Whatever
That comment contributes no information, and anyone reasonable familiar with Transact-SQL should be able to read the code line faster than that comment. Of course, since we normally expect comments to contain worthwhile information, both will get read.
