I'm trying to decipher some Oracle trace files and I'm unsure how to interpret multiple PARSE / EXEC / CLOSE statements for what looks like a single cursor. Something like the following:
PARSING IN CURSOR #1
*statement*
END OF STMT
PARSE #1
BINDS #1
*bindings*
EXEC #1
FETCH #1
CLOSE #1
PARSE #1
BINDS #1
*bindings*
EXEC #1
FETCH #1
CLOSE #1
PARSE #1
BINDS #1
*bindings*
EXEC #1
FETCH #1
CLOSE #1
And so on. I count well over a dozen of these without a repeated PARSING IN statement. How should I interpret this?