-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathDBA Text Search.sql
More file actions
33 lines (32 loc) · 1.33 KB
/
DBA Text Search.sql
File metadata and controls
33 lines (32 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*************************************************************************/
/* */
/* (c) 2010-2024 Enginatics GmbH */
/* www.enginatics.com */
/* */
/*************************************************************************/
-- Report Name: DBA Text Search
-- Description: Full text search through database source code objects such as packages, procedures, functions, triggers etc.
The search can also be done using regular expressions.
To retrieve incorrect custom code such as a frequent performance issue calling the fnd_concurrent\.wait_for_request\s function with a zero interval time, for example, use parameter 'Multi Line Regex search' with the following value: fnd_concurrent\.wait_for_request\s*\(\s*request_id\s*=>\s*\w+\s*,\s*interval\s*=>\s*0\s*,
-- Excel Examle Output: https://www.enginatics.com/example/dba-text-search/
-- Library Link: https://www.enginatics.com/reports/dba-text-search/
-- Run Report: https://demo.enginatics.com/
select ds.* from (
select
ds.owner,
ds.type,
ds.name,
ds.line,
ds.text,
&multi_line_text
null multi_line_text
from
dba_source ds
where
1=1
) ds
where
2=2
order by
ds.name,
ds.line