In persistent procedure how to retrive how many handles and procedures are involved in persistent procedure?
can any one send with code
I just want to make sure I understand your question properly.
For a given persistent procedure, do you want to find out what procedures and handles that persistent procedure was responsible for creating?
If so, the INSTANTIATING-PROCEDURE attribute on the objects allow you to find the procedure that created them, but you will only be able to find the ones you can get via the SESSION system handle. The SESSION handle has things like the FIRST-PROCEDURE, FIRST-BUFFER, etc attributes that let you see the chain of procedures, buffers, etc on the session. You would have to loop through them and find the ones that have the INSTANTIATING-PROCEDURE as the persistent procedure in question.