Is there a way to visually organize database tables (and saved queries and views)?
February 2, 2012 3:33 PM Subscribe
I have a wonderful (Oracle) SQL database and I use Navicat Lite to crunch around in it. My problem is that I'm staring at lists of 50+ tables, 60+ saved queries, 10+ views, etc. Is there anything I can do to somehow organise things in a visually pleasing and/or functional way?
What do database administrators do? Do they use naming conventions to cluster tables together? Is there some sort of way I could group tables into folders (even if it's meaningless to the database)? Color-coding? Dividers? Please help me; this is getting unwieldy to navigate through.
posted by iamkimiam to computers & internet (4 answers total) 1 user marked this as a favorite
When i have the opportunity I do use naming conventions to make it easier to identify groups of tables ,stored procs, views etc.
I'm not sure if this is your thing but I do a fair bit straight off the command line running queries similar to this ..
SQL> select table_name from user_tables where table_name like 'FOO_BAR%';
... which I find useful for selecting groups of objects.
posted by southof40 at 5:30 PM on February 2