2

Is there a way to get the stack trace of the sql query that is given in awr, i mean a way to check the flow of the query from which package or procedure that it has been triggered? tkprof and awr both show only the sql and the elspased time, parse and fetches. –

1
  • anyone help on this ? Commented Mar 30, 2015 at 6:41

1 Answer 1

1

As far I know - there are no other way than full code search - either select from Oracle internal views (USER_SOURCE/ALL_SOURCE/DBA_SOURCE):

SELECT name, text
FROM dba_source
WHERE lower(text) LIKE ('%some representative text from query%)

or text search in code repository, if you have it.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.