SlideShare ist ein Scribd-Unternehmen logo
1 von 99
Downloaden Sie, um offline zu lesen
How	to	find	and	fix	your	
Java		APEX		ADF		OBIEE		.NET		SQL		PL/SQL	
application	performance	problem
Cary	Millsap

Cintra	Software	and	Services	·	Method	R	Corporation	
@CaryMillsap	
COLLABORATE	2018	
Mandalay	Bay	Hotel	·	Las	Vegas,	Nevada	
9:45a–10:45a	Monday	23	April	2018	
©	2006,	2018	Cary	Millsap
1
http://bit.ly/methodr-guide-ioug
Booth	1250
@CaryMillsap 2
Cary	Millsap
@CaryMillsap
Q What	is	the	most	common	
Oracle	performance	problem	
you	see?”
3
“
@CaryMillsap
What	is	the	most	common	
Oracle	performance	problem	
you	see?”
4
“
Assuming	that	other	
people’s	common	problems	
must	be	your	problem.
...
Q
A
@CaryMillsap 5
Java		APEX		ADF		OBIEE		.NET		SQL		PL/SQL
@CaryMillsap
What	is	a	performance problem?
6
@CaryMillsap 7
WHAT
YOU HAVE
LEARNED,
UNLEARN
YOU MUST.
@CaryMillsap
Performance is not

an attribute of a system.
8
@CaryMillsap 9
ID USERNAME OPERATION R SLR
-- -------- --------- ------ ---
1 FCHANG OE BOOK 12.019 2.0
2 RSMITH OE SHIP 3.528 5.0
3 DJOHNSON OE PICK 1.211 5.0
4 FFORBES OE BOOK 0.716 2.0
5 FCHANG OE BOOK 1.917 2.0
6 LBUMONT PA MTCH 1.305 2.0
#define PERFid ((Rid ≤ SLRid)?”FAST”:”SLOW”)
@CaryMillsap 10
ID USERNAME OPERATION R SLR PERF
-- -------- --------- ------ --- ----
1 FCHANG OE BOOK 12.019 2.0 SLOW
2 RSMITH OE SHIP 3.528 5.0 FAST
3 DJOHNSON OE PICK 1.211 5.0 FAST
4 FFORBES OE BOOK 0.716 2.0 FAST
5 FCHANG OE BOOK 1.917 2.0 FAST
6 LBUMONT PA MTCH 1.305 2.0 FAST
#define PERFid ((Rid ≤ SLRid)?”FAST”:”SLOW”)
@CaryMillsap
Performance is an attribute of

each individual experience

with a system.
11
@CaryMillsap 12
TASK
• id
• name
• code-path
• …
EXPERIENCE
• id
• task-id
• user-id
• ip-address
• start-time
• end-time
• ERROR-code
• WORK-done
SQL
• ID
• Task-id
• SQL-text
• ...
N
1
N
1
@CaryMillsap 13
<experience	
	 id						=	"b3196c98-906d-4394-bc55-0339518a63b2"	
	 task-id	=	"7"	
	 uid					=	"238"	
	 ip						=	"142.128.130.186"	
	 t0						=	"2014-04-10T08:32:14.137886"	
	 t1						=	"2014-04-10T08:32:17.891173"	
	 err					=	""	
	 work				=	"3"	
/>
@CaryMillsap
has to finish quickly.”
click
button
link
row
query
report
job
}{“My
14
This	is	what	performance	is.
@CaryMillsap
has to finish quickly.”
click
button
link
row
query
report
job
}{“My
15
A	performance	problem	is	when	it	doesn’t.
@CaryMillsap 16
“How long does it take?”
Response	time	(R)	
Duration	from	service	request	to	
service	fulfillment.
Sanjay Nancy Ken Jorge
R
t0
t1
R	=	t1	–	t0
Two	big	questions...	
1.How	long?	
2.Why?
@CaryMillsap 17
Two	big	questions...	
1.How	long?	
2.Why?
“How long does it take?”
Response	time	(R)	
Duration	from	service	request	to	
service	fulfillment.
Sanjay Nancy Ken Jorge
R
t0
t1
R	=	t1	–	t0
@CaryMillsap
Method	R
18
@CaryMillsap
1. Select	the	experience	you	need	to	improve.	
2.Measure	its	response	time	(R)	in	detail.	
3.Execute	the	best	net-payoff	remedy.	
4.Repeat	until	economically	optimal.
19
Method	R
@CaryMillsap
1. Select	the	experience	you	need	to	improve.	
2.Measure	its	response	time	(R)	in	detail.	
3.Execute	the	best	net-payoff	remedy.	
4.Repeat	until	economically	optimal.
20
Method	R
@CaryMillsap
1. Focus on the real, actual problem.
2. Catch it in the act.
3. Do the smart thing.
4. Quit when “helping” stops helping.
21
OPTI
M
IZE ANYT
HING
M
ethod
R
Method	R
@CaryMillsap
1. Select	the	experience	you	need	to	improve.	
2.Measure	its	response	time	(R)	in	detail.	
3.Execute	the	best	net-payoff	remedy.	
4.Repeat	until	economically	optimal.
22
Method	R
@CaryMillsap 23
How do you do this,

when the “it” is your code?
Method	R
1. Select	the	experience	you	need	to	improve.	
2.Measure	its	response	time	(R)	in	detail.	
3.Execute	the	best	net-payoff	remedy.	
4.Repeat	until	economically	optimal.
@CaryMillsap 24
WHAT
YOU HAVE
LEARNED,
UNLEARN
YOU MUST.
@CaryMillsap
Oracle	extended	SQL	tracing

is	a	feature	of	every	Oracle	Database.
25
Oracle7	1992					Oracle8	1997					Oracle8i	2000					Oracle9i	2001					Oracle	10g	2004					Oracle	11g	2007					Oracle	12c	2013					Oracle	18c	2018
EXADATAD A T A B A S E
ENTERPRISE EDITION
D A T A B A S E
STANDARD EDITION
D A T A B A S E
EXPRESS EDITION
CLOUD
@CaryMillsap
Measuring	Oracle	response	times
26
@CaryMillsap
Trace
27
❶ ❷
Get	the	
trace	file
❸
Understand	
its	story
@CaryMillsap
❶
Trace
❷
Get	the	
trace	file
❸
Understand	
its	story
28
@CaryMillsap 29
This	is	the	hardest	part.		
...But	only	the	first	time.	
After	that,	it’s	lather,	rinse,	repeat.
@CaryMillsap
Set	Enable	Application	Tracing	to	Yes	for	your	APEX	instance.	
https://app.com/apex/f?p=150:1:5547991082303::NO:::&P_TRACE=YES
30
Well,	it’s	easy	in	Oracle	APEX.	
To	decide	at	run	time	whether	to	trace	your	code...
@CaryMillsap
Other	technologies	require	a	little	more	work.	
First,	the	basics.
31
@CaryMillsap 32
To	decide	at	compile	time	to	trace	all	your	code...


	 dbms_session.session_trace_enable(

	 	 waits		 	 =>	true,

	 	 binds		 	 =>	false,

	 	 plan_stat	 =>	'FIRST_EXECUTION'

	 );

--	Your	OE	BOOK	code	
dbms_session.session_trace_disable();
@CaryMillsap
if	(should_trace('OE	BOOK',	dbms_random.value(0,1))	{

	 dbms_session.session_trace_enable(

	 	 waits		 	 =>	true,

	 	 binds		 	 =>	false,

	 	 plan_stat	 =>	'FIRST_EXECUTION'

	 );

}	
--	Your	OE	BOOK	code	
dbms_session.session_trace_disable();
33
To	decide	at	run	time	whether	to	trace	your	code...
@CaryMillsap
sub	should_trace(t,	r)	{

	 select	trace_proportion	from	trace_control	where	task_name	=	:t;

	 return	(r	<=	trace_proportion);

}
34
...where	should_trace	looks	like	this.
task_name trace_proportion
OE	BOOK 0.05
OE	PICK 0.02
OE	SHIP 1
OE	INVOICE 0.01
trace_control
should_trace('OE BOOK', x) → true
should_trace('OE BOOK', x) → false
0 1.05
[ ))[
@CaryMillsap
Oracle	Database	helps	you	implement

run	time	tracing	decisions...	
...without	having	to	make	your	developers	do	the	if	block	stuff.
35
@CaryMillsap
dbms_monitor.serv_mod_act_trace_enable(

	 service_name	 =>	'SYS$USERS',

	 module_name	 =>	'OE	BOOK',

	 action_name	 =>	dbms_monitor.all_actions,

	 waits	 =>	true,

	 binds	 =>	false,

	 plan_stat	 =>	'FIRST_EXECUTION'

);
36
The	DBA	does	this,	at	run	time.
But	this	works	only	if	your	code

sets	its	module	name	to	“OE	BOOK”.
@CaryMillsap
How	you	set	your	module	name	varies	by	technology.	
SQL			PL/SQL			Java			ADF			.NET			OBIEE
37
@CaryMillsap
--	PL/SQL	example	
dbms_application_info.set_module(

	 module_name	 =>	'OE	BOOK',

	 action_name	 =>	sys_guid()

);	
--	Your	OE	BOOK	code	
dbms_application_info.set_module(

	 module_name	 =>	null,

	 action_name	 =>	null

);
38
SQL				PL/SQL	
To	set	your	code’s	module	and	action	names...
@CaryMillsap
//	JDBC	12c	example	
Properties	p	=	new	Properties();

p.put("OCSID.MODULE",	"OE	BOOK");

p.put("OCSID.ACTION",	UUID.randomUUID().toString());

connection.setClientInfo(p);	
//	Your	OE	BOOK	code	
p.put("OCSID.MODULE",	"");

p.put("OCSID.ACTION",	"");

connection.setClientInfo(p);
39
Java				ADF	
To	set	your	code’s	module	and	action	names...
@CaryMillsap
//	C#	example	
conn.ModuleName	=	"OE	BOOK";

conn.ActionName	=	Guid.NewGuid().toString();	
//	Your	OE	BOOK	code	
conn.ModuleName	=	"";

conn.ActionName	=	"";
40
ODP.NET	
To	set	your	code’s	module	and	action	names...
@CaryMillsap
Text
41
OBIEE	
To	set	your	code’s	module	and	action	names...
@CaryMillsap
Here’s	the	goal.
42
@CaryMillsap
User’s	R	
experience
Oracle	
trace	file
43
AppUser Oracle DB
time
You	want	this	to	be	small
You	want	this	to	be	small
@CaryMillsap
Another	
experience
An	
experience
Not	the	
trace	file	
you	want
44
AppUser Oracle DB
time
@CaryMillsap
Another	
experience
An	
experience
You	want	one	
trace	file	per	
experience
45
AppUser Oracle DB
time
@CaryMillsap
The	goal:	
Trace	exactly	each	user	experience	
you	care	about.	
So	that	you	can	see	how	your	code	consumes	time…

1.	when	it	behaves	properly,	and

2.	when	it	misbehaves.
46
@CaryMillsap 47
WHAT
YOU HAVE
LEARNED,
UNLEARN
YOU MUST.
@CaryMillsap
This	is	what	
you’re	
looking	at	
when	you	use	
systemwide	
aggregations.
48
AppUser Oracle DB
time
@CaryMillsap
Trace
49
❶ ❷
Get	the	
trace	file
❸
Understand	
its	story
@CaryMillsap 50
This	is	the	boring	part.		
...But	it’s	an	inexpensive	problem	to	solve.
@CaryMillsap
Some	things	to	know...	
Your	trace	file	is	on	the	Oracle	Database	server(s),	called:	
select value tracefile from v$diag_info where name = 'Default Trace File'	
Or,	more	generally:	
select tracefile from v$process where addr=(
select paddr from v$session where sid=(
select sid from v$mystat where rownum=1
)
)
Sessions	with	DOP	=	k	can	create	more	than	2k	+	1	trace	files.
51
@CaryMillsap 52
Please, will you help me find my trace file?
@CaryMillsap
There	are	lots	of	ways	to	fetch	the	trace	data.	
FTP	
Samba	
NFS	mount	
portable	disk	
USB	thumb	drive	
Oracle	Database	directory	objects	
Method	R	Trace	extension	for	Oracle	SQL	Developer
53
@CaryMillsap
Fetching	trace	files	can	be	easy.	
You	can	build	tools,	or	you	can	buy	them.
54
Fn’m [ mifp_^ jlif_g.
@CaryMillsap
Trace
55
❶ ❷
Get	the	
trace	file
❸
Understand	
its	story
@CaryMillsap 56
This	is	the	FUN	part.
@CaryMillsap 57
What’s	in	there?!
@CaryMillsap 58
An	Oracle	trace	file	is	a	log	that	shows

what	your	code	did	inside	the	Oracle	Database.
@CaryMillsap
Some	things	to	know...	
Oracle	writes	a	trace	line	when	a	(db|os)	call	finishes.	
There	are	two	primary	line	formats:	one	for	db	calls,	one	for	os	calls.	
Each	call	is	associated	with	a	SQL	or	PL/SQL	statement	through	a	cursor	id.	
Each	line	contains	a	time	stamp	(tim)	and	a	duration	(e|ela).	
R	≠	∑(e|ela)	because	parent	call	durations	include	child	call	durations.
59
@CaryMillsap
The definitive guide to accurate, high-precision
measurement of user performance experiences,
for Oracle application developers and database
administrators.
Cary V. Millsap
TM
MeTHOD R
TM
The Guide to
MASTERING
ORACLE
TRACE DATA
Second Edition
REVISED
UPDA
TED
NEW PA
G
ES
1 3 2
60
method-r.com	
For	more	details...
@CaryMillsap
Let’s	look	at	
some	trace	
lines...
61
@CaryMillsap 62
begin prepare
CPU
latch-related syscall
CPU
end prepare
begin exec
CPU
write(SQLNET_OUT, result_to_client);
end exec
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
latch-related syscall
CPU
write(SQLNET_OUT, result_to_client);
end fetch
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
write(SQLNET_OUT, result_to_client);
write(SQLNET_OUT, more_results);
write(SQLNET_OUT, more_results);
end fetch
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
write(SQLNET_OUT, result_to_client);
write(SQLNET_OUT, more_results);
write(SQLNET_OUT, more_results);
end fetch
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
write(SQLNET_OUT, result_to_client);
write(SQLNET_OUT, more_results);
write(SQLNET_OUT, more_results);
end fetch
read(SQLNET_IN, next_request_from_client);
Oracle	kernel	code	path
This	is	the	
kind	of	stuff	
your	code	
causes	the	
Oracle	kernel	
to	do.
@CaryMillsap 63
WAIT #42: nam='latch: library cache'…
PARSE #42:c=10000,…
WAIT #42: nam='SQL*Net message to client'…
EXEC #42:c=10000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='latch: cache buffers chains'…
WAIT #42: nam='SQL*Net message to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
Oracle	extended	SQL	trace	data
begin prepare
CPU
latch-related syscall
CPU
end prepare
begin exec
CPU
write(SQLNET_OUT, result_to_client);
end exec
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
latch-related syscall
CPU
write(SQLNET_OUT, result_to_client);
end fetch
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
write(SQLNET_OUT, result_to_client);
write(SQLNET_OUT, more_results);
write(SQLNET_OUT, more_results);
end fetch
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
write(SQLNET_OUT, result_to_client);
write(SQLNET_OUT, more_results);
write(SQLNET_OUT, more_results);
end fetch
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
write(SQLNET_OUT, result_to_client);
write(SQLNET_OUT, more_results);
write(SQLNET_OUT, more_results);
end fetch
read(SQLNET_IN, next_request_from_client);
Oracle	kernel	code	path
This	is	the	
kind	of	
trace	data	
the	kernel	
produces.
@CaryMillsap 64
WAIT #42: nam='latch: library cache'…
PARSE #42:c=10000,…
WAIT #42: nam='SQL*Net message to client'…
EXEC #42:c=10000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='latch: cache buffers chains'…
WAIT #42: nam='SQL*Net message to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
Oracle	extended	SQL	trace	data
Of	course,	
you	don’t	
directly	get	
to	see	the	
kernel	code	
path.
@CaryMillsap 65
WAIT #42: nam='latch: library cache'…
PARSE #42:c=10000,…
WAIT #42: nam='SQL*Net message to client'…
EXEC #42:c=10000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='latch: cache buffers chains'…
WAIT #42: nam='SQL*Net message to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
Oracle	extended	SQL	trace	data
...Or	that	
helpful	grid	
that	I	drew	
for	you.
@CaryMillsap 66
WAIT #42: nam='latch: library cache'…
PARSE #42:c=10000,…
WAIT #42: nam='SQL*Net message to client'…
EXEC #42:c=10000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='latch: cache buffers chains'…
WAIT #42: nam='SQL*Net message to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
Oracle	extended	SQL	trace	data
All	you	
get	to	see	
is	this.
@CaryMillsap
WAIT #42: nam='latch: library cache'…
PARSE #42:c=10000,…
WAIT #42: nam='SQL*Net message to client'…
EXEC #42:c=10000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='latch: cache buffers chains'…
WAIT #42: nam='SQL*Net message to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
WAIT #42: nam='SQL*Net message to client'…
WAIT #42: nam='SQL*Net more data to client'…
WAIT #42: nam='SQL*Net more data to client'…
FETCH #42:c=20000,…
WAIT #42: nam='SQL*Net message from client'…
67
Oracle	extended	SQL	trace	dataOracle	kernel	code	path
begin prepare
CPU
latch-related syscall
CPU
end prepare
begin exec
CPU
write(SQLNET_OUT, result_to_client);
end exec
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
latch-related syscall
CPU
write(SQLNET_OUT, result_to_client);
end fetch
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
write(SQLNET_OUT, result_to_client);
write(SQLNET_OUT, more_results);
write(SQLNET_OUT, more_results);
end fetch
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
write(SQLNET_OUT, result_to_client);
write(SQLNET_OUT, more_results);
write(SQLNET_OUT, more_results);
end fetch
read(SQLNET_IN, next_request_from_client);
begin fetch
CPU
write(SQLNET_OUT, result_to_client);
write(SQLNET_OUT, more_results);
write(SQLNET_OUT, more_results);
end fetch
read(SQLNET_IN, next_request_from_client);
You	can	learn	
to	envision	the	
kernel’s	code	
path	that	
motivated	your	
trace	file.
@CaryMillsap
There	are	lots	of	ways	to	summarize	a	trace	file.	
tkprof	
SQL	Developer	[Trace]	Viewer	
Trace	Analyzer	
tvdxstat	
xtrace	
OraSRP	
Method	R	Workbench	
68
@CaryMillsap
Profiling	trace	files	can	be	easy.	
You	can	build	tools,	or	you	can	buy	them.
69
Fn’m [ mifp_^ jlif_g.
@CaryMillsap
What	you	can	do	with	trace	files
70
@CaryMillsap
Example	1
71
@CaryMillsap 72
mrskew	"r1-fixed.trc"		
CALL-NAME																								DURATION							%		CALLS						MEAN							MIN							MAX	
---------------------------		------------		------		-----		--------		--------		--------	
SQL*Net	message	from	client		1,403.927942			99.7%		2,161		0.649666		0.000000		0.927028	
FETCH																												3.013549				0.2%		2,161		0.001395		0.000000		0.005000	
direct	path	read	temp												1.259022				0.1%					83		0.015169		0.003287		0.046968	
SQL*Net	more	data	to	client						0.141213				0.0%		2,460		0.000057		0.000005		0.001269	
SQL*Net	message	to	client								0.007964				0.0%		2,161		0.000004		0.000001		0.000376	
---------------------------		------------		------		-----		--------		--------		--------	
TOTAL	(5)																				1,408.349690		100.0%		9,026		0.156033		0.000000		0.927028
99.7%	of	the	time	is	2,161	network	round-trips.		
What	SQL	statements	cause	the	round-trips?
@CaryMillsap 73
mrskew	--group='($sqlid=~/^#/?"":"[".$sqlid."]")'	--gl=SQLID	--name='message	from	client'	"r1-fixed.trc"	
SQLID																DURATION							%		CALLS						MEAN							MIN							MAX	
---------------		------------		------		-----		--------		--------		--------	
[7d0bv6ds85q1f]		1,403.927942		100.0%		2,161		0.649666		0.000000		0.927028	
---------------		------------		------		-----		--------		--------		--------	
TOTAL	(1)								1,403.927942		100.0%		2,161		0.649666		0.000000		0.927028
Just	one.	All	2,161	round-trips	are	executed	
on	behalf	of	just	one	SQL	statement.
@CaryMillsap 74
mrskew	--rc=p10.rc	--name='SQL*Net	message	from	client'	"r1-fixed.trc"		
								RANGE	{min	≤	e	<	max}						DURATION							%		CALLS						MEAN							MIN							MAX	
-----------------------------		------------		------		-----		--------		--------		--------	
	1.					0.000000					0.000001						0.000000				0.0%						1		0.000000		0.000000		0.000000	
	2.					0.000001					0.000010																																																												
	3.					0.000010					0.000100																																																												
	4.					0.000100					0.001000																																																												
	5.					0.001000					0.010000																																																												
	6.					0.010000					0.100000																																																												
	7.					0.100000					1.000000		1,403.927942		100.0%		2,160		0.649967		0.547110		0.927028	
	8.					1.000000				10.000000																																																												
	9.				10.000000			100.000000																																																												
10.			100.000000	1,000.000000																																																												
11.	1,000.000000											+∞																																																												
-----------------------------		------------		------		-----		--------		--------		--------	
																			TOTAL	(11)		1,403.927942		100.0%		2,161		0.649666		0.000000		0.927028
Each	round-trip	consumes	an	average	of	.649967	≈	.650	s.	
Why?
@CaryMillsap
App Oracle DB
time
75
~.001	s
~.001	s
~.650	s~.648	s
Each	SQL*Net	message	from	client	call	(~.650	s)	looks	like	this.	
If	round-trip	network	latency	is	~.002	s,	then	this	experience	is	spending	
~.648	s	in	the	Java	code	executed	between	database	calls.
AppUser Oracle DB
time
@CaryMillsap 76
mrskew	--name=':dbcall'	--select='$row'	--slabel=ROWS	--precision=0	"r1-fixed.trc"		
CALL-NAME					ROWS							%		CALLS		MEAN		MIN		MAX	
---------		-------		------		-----		----		---		---	
FETCH						216,017		100.0%		2,161			100			17		100	
---------		-------		------		-----		----		---		---	
TOTAL	(1)		216,017		100.0%		2,161			100			17		100
One	final	check...	
The	trace	file	shows	that	the	application,	at	least,	is	fetching	an	
average	of	100	rows	per	fetch	call	(per	round-trip).	
This	helps	explain	the	Java-side	latency,	but	still,	.648	s	to	
process	just	100	rows	needs	some	explaining.
@CaryMillsap 77
mrskew	"r1-fixed.trc"		
CALL-NAME																								DURATION							%		CALLS						MEAN							MIN							MAX	
---------------------------		------------		------		-----		--------		--------		--------	
SQL*Net	message	from	client		1,403.927942			99.7%		2,161		0.649666		0.000000		0.927028	
FETCH																												3.013549				0.2%		2,161		0.001395		0.000000		0.005000	
direct	path	read	temp												1.259022				0.1%					83		0.015169		0.003287		0.046968	
SQL*Net	more	data	to	client						0.141213				0.0%		2,460		0.000057		0.000005		0.001269	
SQL*Net	message	to	client								0.007964				0.0%		2,161		0.000004		0.000001		0.000376	
---------------------------		------------		------		-----		--------		--------		--------	
TOTAL	(5)																				1,408.349690		100.0%		9,026		0.156033		0.000000		0.927028
No	matter	how	long	you	try	to	“fix	the	database”	here,	you’re	
going	to	see	at	most	only	a	.3%	difference	in	response	time.	
The	problem	here	is	in	the	Java.
@CaryMillsap
Example	2
78
@CaryMillsap 79
mrskew	"prd1_ora_9031.trc"		
CALL-NAME																								DURATION							%		CALLS						MEAN							MIN							MAX	
-----------------------------		----------		------		-----		--------		--------		--------	
PARSE																										735.426197			78.9%				698		1.053619		0.000000		4.498316	
SQL*Net	message	from	client				104.762229			11.2%		1,378		0.076025		0.000391		3.554818	
FETCH																											91.800028				9.8%				680		0.135000		0.000000		0.506923	
db	file	sequential	read										0.104670				0.0%					14		0.007476		0.001067		0.016408	
EXEC																													0.083988				0.0%				349		0.000241		0.000000		0.002000	
gc	cr	block	2-way																0.073233				0.0%					96		0.000763		0.000280		0.001968	
gc	current	block	2-way											0.031298				0.0%					47		0.000666		0.000361		0.001640	
gc	current	grant	busy												0.028037				0.0%					47		0.000597		0.000156		0.001508	
SQL*Net	more	data	from	client				0.025819				0.0%				837		0.000031		0.000000		0.002564	
CLOSE																												0.018999				0.0%				698		0.000027		0.000000		0.001000	
12	others																								0.061576				0.0%		1,633		0.000038		0.000000		0.001687	
-----------------------------		----------		------		-----		--------		--------		--------	
TOTAL	(22)																					932.416074		100.0%		6,477		0.143958		0.000000		4.498316
PARSE	calls	account	for	78.9%	of	the	
experience	duration.	
That	is	never	appropriate.
@CaryMillsap 80
mrskew	--rc=p10.rc	--name=parse	"prd1_ora_9031.trc"		
								RANGE	{min	≤	e	<	max}				DURATION							%		CALLS						MEAN							MIN							MAX	
-----------------------------		----------		------		-----		--------		--------		--------	
	1.					0.000000					0.000001				0.000000				0.0%				307		0.000000		0.000000		0.000000	
	2.					0.000001					0.000010																																																										
	3.					0.000010					0.000100																																																										
	4.					0.000100					0.001000				0.007992				0.0%						8		0.000999		0.000999		0.000999	
	5.					0.001000					0.010000				0.033000				0.0%					33		0.001000		0.001000		0.001000	
	6.					0.010000					0.100000																																																										
	7.					0.100000					1.000000																																																										
	8.					1.000000				10.000000		735.385205		100.0%				350		2.101101		1.333797		4.498316	
	9.				10.000000			100.000000																																																										
10.			100.000000	1,000.000000																																																										
11.	1,000.000000											+∞																																																										
-----------------------------		----------		------		-----		--------		--------		--------	
																			TOTAL	(11)		735.426197		100.0%				698		1.053619		0.000000		4.498316
That’s	a	lot	of	time	spent	parsing,	and	
these	PARSE	calls	are	really	expensive.
@CaryMillsap 81
mrskew	--name=parse	--group='$sqlid'	--gl=SQLID	--sort=4nd	"prd1_ora_9031.trc"		
SQLID												DURATION							%		CALLS						MEAN							MIN							MAX	
-------------		----------		------		-----		--------		--------		--------	
gkbss8w49204k				4.176363				0.6%				349		0.011967		0.000000		4.135371	
66kf30526wrgy				3.153521				0.4%						1		3.153521		3.153521		3.153521	
3r3dhkb0z824v				2.911558				0.4%						1		2.911558		2.911558		2.911558	
3tzra8a2a7pny				1.605757				0.2%						1		1.605757		1.605757		1.605757	
2hycpfzdzsu98				3.155520				0.4%						1		3.155520		3.155520		3.155520	
6ppu3s1jszy3a				2.208665				0.3%						1		2.208665		2.208665		2.208665	
66vkb784j9rcu				1.901711				0.3%						1		1.901711		1.901711		1.901711	
5wamvs45j6nh4				1.492773				0.2%						1		1.492773		1.492773		1.492773	
dj1buvhxg7h19				1.499772				0.2%						1		1.499772		1.499772		1.499772	
41yrts4g94ghn				1.628753				0.2%						1		1.628753		1.628753		1.628753	
340	others					711.691804			96.8%				340		2.093211		1.333797		4.498316	
-------------		----------		------		-----		--------		--------		--------	
TOTAL	(350)				735.426197		100.0%				698		1.053619		0.000000		4.498316
One	statement	was	parsed	349	times;	at	least	348	of	those	are	
unnecessary.*	
There	are	350	distinct	SQL	statements	executed	by	this	
report.	...Which	is	funny,	because	you	know	this	report,	and	you	
don’t	remember	there	being	that	many.	
*Actually	all	349	are	unnecessary,	because	the	trace	file	shows	that	there’s	never	an	EXEC	call	
associated	with	any	of	these	PARSE	calls,	but	that’s	a	story	for	another	day.
@CaryMillsap 82
mrskew	--rc=distinct-texts.rc	"prd1_ora_9031.trc"		
				SSQLID		DISTINCT-TEXTS							%		CALLS		MEAN		MIN		MAX	
----------		--------------		------		-----		----		---		---	
4151812497														70			20.0%					70					1				1				1	
3642320257														70			20.0%					70					1				1				1	
2047770123														70			20.0%					70					1				1				1	
1928547239														70			20.0%					70					1				1				1	
1138917066														69			19.7%					69					1				1				1	
3957414185															1				0.3%				349					0				0				1	
----------		--------------		------		-----		----		---		---	
	TOTAL	(6)													350		100.0%				698					1				0				1	
For	the	first	5	“shared	SQL	ID”	values	shown	here,	there	are	
~70	distinct	statements	that	could	have	been	sharable.	
You	should	be	able	to	reduce	the	parse	call	count	from	698	to	
6,	by	writing	sharable	SQL	statements,	and	pulling	PARSE	calls	
out	of	loops.
@CaryMillsap 83
mrskew	"prd1_ora_9031.trc"		
CALL-NAME																								DURATION							%		CALLS						MEAN							MIN							MAX	
-----------------------------		----------		------		-----		--------		--------		--------	
PARSE																										735.426197			78.9%				698		1.053619		0.000000		4.498316	
SQL*Net	message	from	client				104.762229			11.2%		1,378		0.076025		0.000391		3.554818	
FETCH																											91.800028				9.8%				680		0.135000		0.000000		0.506923	
db	file	sequential	read										0.104670				0.0%					14		0.007476		0.001067		0.016408	
EXEC																													0.083988				0.0%				349		0.000241		0.000000		0.002000	
gc	cr	block	2-way																0.073233				0.0%					96		0.000763		0.000280		0.001968	
gc	current	block	2-way											0.031298				0.0%					47		0.000666		0.000361		0.001640	
gc	current	grant	busy												0.028037				0.0%					47		0.000597		0.000156		0.001508	
SQL*Net	more	data	from	client				0.025819				0.0%				837		0.000031		0.000000		0.002564	
CLOSE																												0.018999				0.0%				698		0.000027		0.000000		0.001000	
12	others																								0.061576				0.0%		1,633		0.000038		0.000000		0.001687	
-----------------------------		----------		------		-----		--------		--------		--------	
TOTAL	(22)																					932.416074		100.0%		6,477		0.143958		0.000000		4.498316
Before	your	boss	will	let	you	“fix”	this	code,	you	have	to	predict	the	benefit.	
Reducing	the	parse	count	from	698	to	6	should	reduce	parsing	duration	from	
~735	to	~7,	a	savings	of	about	730	s.	Response	time	should	improve	from	~932	s	
to	~200	s,	just	from	eliminating	the	PARSE	calls	only.
@CaryMillsap
You	might	have	known	that	you	should	
“use	bind	variables,”	but	you	couldn’t	
have	quantified	the	R	impact	on	the	
experience	without	this	trace	file.
84
OPTI
M
IZE ANYT
HING
M
ethod
R
@CaryMillsap
BASELINE:	
for	each	invoice	number	{	
	 cursor	=	parse(“select	...where	invoice_number	=	”	+	number);	
	 exec(cursor);	
	 loop	over	the	result	set	to	fetch	all	the	rows;	
}	
85
BAD
This	is	horrific:	
• Uses	too	much	CPU	for	PARSE	calls	
• Serialization	on	library	cache	and	shared	pool	latches	
• Consumes	too	much	memory	in	the	library	cache	
• May	execute	too	many	network	round-trips
@CaryMillsap
BASELINE:	BAD	
for	each	invoice	number	{	
	 cursor	=	parse(“select	...where	invoice_number	=	”	+	number);	
	 exec(cursor);	
	 loop	over	the	result	set	to	fetch	all	the	rows;	
}	
FIX	1	“Hey,	let’s	use	bind	variables”:	
for	each	invoice	number	{	
	 cursor	=	parse(“select	...where	invoice_number	=	:a1”);	
	 exec(cursor,	number);	
	 loop	over	the	result	set	to	fetch	all	the	rows;	
}
86
STILL	BAD
A	little	better,	but	still	really	awful:	
• Uses	too	much	CPU	for	PARSE	calls	
• Serialization	on	library	cache	latches	
• Maybe,	too	many	network	round-trips
@CaryMillsap
FIX	1	“Hey,	let’s	use	bind	variables”:	STILL	BAD	
for	each	invoice	number	{	
	 cursor	=	parse(“select	...where	invoice_number	=	:a1”);	
	 exec(cursor,	number);	
	 loop	over	the	result	set	to	fetch	all	the	rows;	
}	
FIX	2:	
cursor	=	parse(“select	...where	invoice_number	=	:a1”);	
for	each	invoice	number	{	
	 exec(cursor,	number);	
	 loop	over	the	result	set	to	fetch	all	the	rows;	
}
87
BETTER
Better	(only	1	PARSE	call	now!),	but	
still	lots	of	network	round-trips.
@CaryMillsap
FIX	2:	BETTER	
cursor	=	parse(“select	...where	invoice_number	=	:a1”);	
for	each	invoice	number	{	
	 exec(cursor,	number);	
	 loop	over	the	result	set	to	fetch	all	the	rows;	
}	
FIX	3:	
cursor	=	parse(“	
	 select	...where	invoice_number

	 in	(select	invoice	number	from	wherever	your	for	each	was	getting	them)	
”);	
exec(cursor);	
loop	over	the	result	set	to	fetch	all	the	rows;
88
Now,	only	1	PARSE	call,	only	1	EXEC	call,	and	
the	minimum	possible	number	of	network	
round-trips.*	
*Unless	there’s	a	way	to	return	fewer	rows.
BETTER	YET
@CaryMillsap
And	so	on...
89
@CaryMillsap
Bad	SQL	
Bad	PL/SQL	
Slow	network	
Missing	indexes	
Parsing	in	a	loop	
Hot	block	problems	
Not	enough	memory	
Disk	latency	problems	
Row	locking	problems	
Row-at-a-time	processing	
Bad	data	structure	choice	
Hardware	misconfigurations	
Too	much	load	on	the	system	
OS	parameters	set	inadequately	
Oracle	parameters	set	inadequately	
SQL	returns	more	rows	than	it	should	
Database	buffer	cache	hot/cold	problems	
Oracle	query	optimizer	choosing	bad	plans	
Reports	run	with	poorly	limiting	parameter	values	
Inefficient	code	between	database	calls	in	the	application 90
A		trace	file	shows	you	where	your	time	has	gone.	
Performance	problems	cannot	hide	from	that.
@CaryMillsap
There	are	only	two	possible	root	causes

for	any	response	time	problem:	
❶	Call	count	is	too	big.	
❷	Latency	is	too	big.*	
*Probably	because	someone	else’s	call	counts	are	too	big.
91
#ProTip
@CaryMillsap 92
mrskew	--top=10	"prd1_ora_9031.trc"		
CALL-NAME																								DURATION							%		CALLS						MEAN							MIN							MAX	
-----------------------------		----------		------		-----		--------		--------		--------	
PARSE																										735.426197			78.9%				698		1.053619		0.000000		4.498316	
SQL*Net	message	from	client				104.762229			11.2%		1,378		0.076025		0.000391		3.554818	
FETCH																											91.800028				9.8%				680		0.135000		0.000000		0.506923	
db	file	sequential	read										0.104670				0.0%					14		0.007476		0.001067		0.016408	
EXEC																													0.083988				0.0%				349		0.000241		0.000000		0.002000	
gc	cr	block	2-way																0.073233				0.0%					96		0.000763		0.000280		0.001968	
gc	current	block	2-way											0.031298				0.0%					47		0.000666		0.000361		0.001640	
gc	current	grant	busy												0.028037				0.0%					47		0.000597		0.000156		0.001508	
SQL*Net	more	data	from	client				0.025819				0.0%				837		0.000031		0.000000		0.002564	
CLOSE																												0.018999				0.0%				698		0.000027		0.000000		0.001000	
12	others																								0.061576				0.0%		1,633		0.000038		0.000000		0.001687	
-----------------------------		----------		------		-----		--------		--------		--------	
TOTAL	(22)																					932.416074		100.0%		6,477		0.143958		0.000000		4.498316
See	how	there	are	only	two	ways	to	reduce	a	DURATION?	
You	have	the	CALLS	column,	and	the	MEAN	column.	
Profiles	like	this	make	it	easy	to	see	how	anything	you	do	to	
make	something	go	faster	must	translate	to	a	manipulation	
of	either	CALLS	or	MEAN.
@CaryMillsap
With	a	good	trace	file,	you	can	predict	the	
response	time	impact	of	a	proposed	change.*	
*This	is	nearly	impossible	to	do	with	systemwide	aggregated	statistics.
93
#ProTip
@CaryMillsap 94
It	just	takes	practice.
@CaryMillsap
Conclusion
95
@CaryMillsap
Your	code	does	stuff.	
Including	some	stuff	inside	Oracle.	
The	time	this	stuff	takes	is	your	user’s	response	time.	
You	can	see	exactly	what	it	is.	
It’s	not	that	hard.
96
@CaryMillsap
References
97
@CaryMillsap
Robyn	Sands,	et	al.	2010.

Expert	Oracle	Practices.

Apress	
Detailed	information	about	
instrumenting	your	Oracle	
application	code.
Cary	Millsap.	2016.

Mastering	Oracle	Trace	Data,	2ed.

Method	R	Corporation	
Textbook	for	1-day	course	that	
teaches	you	how	to	master	
Oracle	trace	data.
Ron	Crisco,	et	al.	2011.

Expert	PL/SQL	Practices.

Apress	
Detailed	information	about	
instrumenting	your	Oracle	
application	code.
Cary	Millsap,	Jeff	Holt.	2003.

Optimizing	Oracle	Performance.

O’Reilly	
Detailed	information	about	
Oracle	trace	data	and	what	to	do	
with	it.
98
@CaryMillsap 99
Q&A
method-r.com	 www.cintra.com	
method-r.com/facebook	 	
@MethodR			 @CintraSoftware	
cary.millsap@method-r.com	 cmillsap@cintra.com
Method R
TM
http://bit.ly/methodr-guide-ioug
Booth	1250

Weitere ähnliche Inhalte

Kürzlich hochgeladen

%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburgmasabamasaba
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Hararemasabamasaba
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024VictoriaMetrics
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...SelfMade bd
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...masabamasaba
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
tonesoftg
tonesoftgtonesoftg
tonesoftglanshi9
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfkalichargn70th171
 

Kürzlich hochgeladen (20)

%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
Abortion Pills In Pretoria ](+27832195400*)[ 🏥 Women's Abortion Clinic In Pre...
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 

Empfohlen

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Empfohlen (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

How to Find and Fix Your {Java, APEX, ADF, OBIEE, .NET, SQL, PL/SQL} Application Performance Problem