Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL proc diagram generating software of a program flow [closed]

I have a couple of very long procs in Oracle 2000+ lines with lots of calls. And I'd like to generate program flow Diagram (algorithm) for better understanding of the process for further refactoring.

It's not the code I wrote so I don't know the logic enough.

What would you advise to do in this case? I tried to draw a text-like flow but it takes lots of time and still hard to cover all the logic for understanding.

The best approach I see would be flow chart generated from SQL proc with links to "jump" between code and chart.

UPDATE: Found couple of software doing the same:

  1. ClearSQL - makes CRUD diagrams, call map, and flow chart.

  2. Quest SQL Navigator Expert (using it now): it has Outline (makes code flow with ability to collapse-expand blocks of code - really cool one!), Code Explorer (enumerates all func, params with links ti SQL text - just in interface) features

like image 820
zmische Avatar asked Jan 27 '10 14:01

zmische


2 Answers

There is a product, Code Visual to Flowchart, which can take code in various languages and do something like what you're describing. Unfortunately though Oracle doesn't appear to be in the list of supported languages, but Microsoft TSQL is; maybe you could at least translate your proc from Oracle into MS and use this to roughly visualize your proc's flow.

Failing that burnall's suggestion sounds like the best way to go, essentially divide and conquer.

like image 185
Darth Continent Avatar answered Nov 09 '22 12:11

Darth Continent


I doubt that such tool, even if it exists could help better understanding. I think, time of big flow-charts is over.
I would advice to understand logic with step-by-step refactoring:
iteratively extract parts of procedure to smaller procedures and add tests.

like image 34
burnall Avatar answered Nov 09 '22 13:11

burnall