Given a #, how do I discover in what table and column it could be found within?
I don't care if it's fast, it just needs to work.
|
Given a #, how do I discover in what table and column it could be found within? I don't care if it's fast, it just needs to work.
| |||||
feedback
|
|
This might help you. - from Narayana Vyas. It searches all columns of all tables in a given database. I have used it before and it works. This is the Stored Proc from the above link - the only change I made was substituting the temp table for a table variable so you don't have to remember to drop it each time.
| |||||||||||
feedback
|
|
Based on bnkdev's answer I modified Narayana's Code to search all columns even numeric ones. It'll run slower, but it this version actually finds all matches not just those found in text columns. I can't thank this guy enough. Saved me days of searching by hand!
| |||
|
feedback
|
|
You probably have to write a short script to query the metadata (in this case a list of tables/columns) from the database, and issue a series of select statements looking for the value. | |||
|
feedback
|
|
Thanks for the really useful script. You may need to add the following modification to the code if your tables have non-convertable fields:
Chris | ||||
|
feedback
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.