-
With most PC options out there shipping with Vista, I think I want a mac.
-
Saving for Retirement with Living Like a Pauper or Winning the Lottery
The title may sound like the book is going to uncover lost secrets of getting rich, but in reality, this is book is a retirement savings manual written especially for novices. In addition to explaining the magic of everyday retirement savings, this book gives links to several additional resources and explanations of how to use…
-
Stored procedure to search functions and stored procedures.
— Altered slightly from http://www.knowdotnet.com/articles/storedprocfinds.htmlCREATE PROCEDURE Find_Text_In_SP_or_FN (@StringToSearch varchar(100))AS SET @StringToSearch = ‘%’ + @StringToSearch +’%’ SELECT DISTINCT SO.Name FROM sysobjects SO (NOLOCK) INNER JOIN syscomments SC (NOLOCK) on SO.ID = SC.ID AND (SO.Type = ‘P’ OR SO.Type LIKE ‘%F%’) AND SC.Text LIKE @stringtosearch ORDER BY SO.NameGO