Important alert: (current site time 7/15/2013 8:03:30 PM EDT)
 

winzip icon

Find a string in Procedures, Triggers, Constraints, Defaults,Functions and Views-even between blocks

Email
Submitted on: 2/21/2004 8:26:12 AM
By: Joseph Gama 
Level: Intermediate
User Rating: By 2 Users
Compatibility: SQL Server 2000, SQL Server 7.0
Views: 11238
 
     I want to thank James Travis for his original and excellent work and to Razvan Socol for alerting about a similar problem that led me to improve James' code. The problem is that when searching for a word that is split between two 8kb blocks, James' code would ignore it. The solution is to look for the parts in the adjacent blocks. This code works for words up to 10 chars but the code can be changed to allow longer words. I included the code from James Travis to test the bug and also created a new version that returns the number of occurences. The original code from James Travis: http://www.planet-source-code.com/vb/scripts/showcode.asp?lngWId=5&txtCodeId=414
 
winzip iconDownload code

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzip to decompress it.Virus note:All files are scanned once-a-day by Planet Source Code for viruses, but new viruses come out every day, so no prevention program can catch 100% of them. For your own safety, please:
  1. Re-scan downloaded files using your personal virus checker before using it.
  2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.


Other 13 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Intermediate category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments

2/23/2004 1:14:29 AMAnton Damhuis

Some nice code.
Could have rounded it of a little more:
1) Could have a column heading depending what was seached on.
Would be nice to enhance it to return table column names as well.
(If this comment was disrespectful, please report it.)

 
2/23/2004 4:11:03 AMJoseph Gama

Hi Anton,
Thank you, I appreciate your feedback.
I changed the code so that the column has a name and created a 2nd version with the number of ocurrences.
The only way to get the searched string as part of the column name would be with dynamic SQL and to get the first returned row with the searched string would be with a UNION before the main SELECT. The first one would have a performance degradation and the second could be problematic if the output table is to be used from another sp. Still, there are many possibilities.

Peace,
Joseph Gama
(If this comment was disrespectful, please report it.)

 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.