Oracle Packages Interview Question and Answers
33. | How can you get the information processed by log miner procedures? |
---|---|
|
|
34. | How can you generate profile of PL/SQL applications to identify performance bottlenecks? |
---|---|
You can use the dbms_profiler package to collect and store profile information about a PL/SQL application. | |
35. | How can retrieve object definitions from data dictionary? |
---|---|
You can use the dbms_metadata package to retrieve object definitions from data dictionary by specifying the following:
|
|
36. | When does an alert gets signaled? |
---|---|
Alerts are transaction based. Whenever, a transaction causing event of interest commits, the alert is signaled. | |