Is there an application , which can parse a given set of stored procedures (SQL Server 2000) and gets all tables and associated columns that are being used in it. The stored procedure can have tables from different databases.
Output should be like TableA columnA columnC columnD
TableB columnE columnF columnG
I have written an small application using Database Edition GDR Any one interested can refer to http://tsqlparsergdr.codeplex.com
You can use SHOWPLAN_ALL setting and parse the output.