If you take a bunch of code from sp_help and kinda move it around and rearrange it, you can produce a pretty good little object dependency report. Just take this code, plop it right into query analyzer, select the database and hit F5. Viola, dependency report. Looks better if you hit CTRL-T first so you get it in text format and not columns. Some portions, such as line the 'query' column manipulation in the first select statement, should be a UDF, but then I'd have to provide code for both and this is just easier. Sorry about not coloring it in HTML. Also, this is not optimized for speed so don't expect it to run to quickly. You would have to replace the temp tables with normal tables, run the query to build the tables (against a small database), then hit CTRL-L to get the execution plan and look at where you will want to create your stats and build your indexes. Guage it against the master database, which running this against the master database takes 31 seconds on the machine I have Sql installed on. I tested it against a single proc P4 1.8 with 256 RAM.