I keep telling people our reporting functionality is probably the most powerful AND overlooked feature in SQL Developer.
Today I’m going to share 2 reports that I frequently forget about, that you may enjoy.
Finding Unindexed Foreign Keys
We all know this should not happen. We all know it eventually happens. Here’s a report to help you quickly find these in your database.
You could easily make this a custom report and have a child page that showed a computed DDL statement to build your index, or include an object hyperlink to the ‘offending’ table…
Top SQL – Tune It!
This report requires both the Diagnostic and Tuning Packs be licensed in the databases you want to run it. You can then ask for expensive queries by wait events over the past X seconds. And when you click one, you can see the SQL Tuning Advisor task output for your offending query.
And you can find this report here:
5 Comments
Hi Jeff, thanks for the article.
I was wondering where I have a foreign key that references the primary key on another table and that primary key is indexed, is there a need or advantage to create an index for the foreign key?
Hi Jeff,
I just run that report and found 41 tables without FK indexes. Thanks for sharing.
Regards,
Azhar
I love the user-defined reports feature. Especially that you can build child/drill-down reports — this is very powerful and helpful. I use them all the time. You can even have child-reports that are PL-SQL based using dbms-output.
However, UNFORTUNATELY, I haven’t found a way to bypass the 20,000 character output limit. The normal limit is much bigger — but in these user defined reports I haven’t found a way to get by this 20,000 limit.
Is there a way to do that? (Please Help)
yes, there’s a way
add this to your anon block in your plsql report code
dbms_output.enable(50000); — now your limit is 50,000 characters
Thanks! That will greatly help me.