I've got an Ms Access database which is a "concentrate of useful information" based on an Ms SQL Server Database.<br>
<br>
It contains the relations between objects (stored procedures, triggers and tables).<br>
<br>
I did it by simply :<br>
1-querying the database<br>
2-analysing each stored procedure(or trigger) script in order to know which stored procedures are executed or operations (insert, update, delete) done.<br>
<br>
A perl script permits me to do this stuff (pattern matching...)<br>
<br>
For instance, I would like to develop an Applet in order to have a hierarchical view of the relationships, to simulate the Windows Explorer on a web site. This applet would take its information in a text file.<br>
<br>
Ouf ... That's all ...<br>
<br>
One of my relation table looks like<br>
<br>
(stored_procedure/stored procedure):<br>
object_id_sp_calling<br>
object_id_sp_called<br>
<br>
and an example of it is :<br>
1 2<br>
1 3<br>
1 4<br>
1 5<br>
2 6<br>
2 7<br>
2 8<br>
3 9<br>
4 10<br>
5 11<br>
5 12<br>
5 13<br>
8 14<br>
<br>
I would like if it is possible by simply querying to obtain something like that :<br>
1<br>
1 2<br>
1 2 6<br>
1 2 7<br>
1 2 8<br>
1 2 8 14<br>
1 3<br>
1 3 9<br>
1 4<br>
1 4 10<br>
1 5<br>
1 5 11<br>
1 5 12<br>
1 5 13<br>
<br>
My Question is :<br>
It is possible to do this stuff ?<br>
<br>
Looking forward to hearing from U<br>
<br>
Excuse my poor english ...<br>
<br>
<br>
<br>
<br>
<br>
It contains the relations between objects (stored procedures, triggers and tables).<br>
<br>
I did it by simply :<br>
1-querying the database<br>
2-analysing each stored procedure(or trigger) script in order to know which stored procedures are executed or operations (insert, update, delete) done.<br>
<br>
A perl script permits me to do this stuff (pattern matching...)<br>
<br>
For instance, I would like to develop an Applet in order to have a hierarchical view of the relationships, to simulate the Windows Explorer on a web site. This applet would take its information in a text file.<br>
<br>
Ouf ... That's all ...<br>
<br>
One of my relation table looks like<br>
<br>
(stored_procedure/stored procedure):<br>
object_id_sp_calling<br>
object_id_sp_called<br>
<br>
and an example of it is :<br>
1 2<br>
1 3<br>
1 4<br>
1 5<br>
2 6<br>
2 7<br>
2 8<br>
3 9<br>
4 10<br>
5 11<br>
5 12<br>
5 13<br>
8 14<br>
<br>
I would like if it is possible by simply querying to obtain something like that :<br>
1<br>
1 2<br>
1 2 6<br>
1 2 7<br>
1 2 8<br>
1 2 8 14<br>
1 3<br>
1 3 9<br>
1 4<br>
1 4 10<br>
1 5<br>
1 5 11<br>
1 5 12<br>
1 5 13<br>
<br>
My Question is :<br>
It is possible to do this stuff ?<br>
<br>
Looking forward to hearing from U<br>
<br>
Excuse my poor english ...<br>
<br>
<br>
<br>
<br>