SlideShare una empresa de Scribd logo
1 de 57
Descargar para leer sin conexión
Make	Accumulated	Data	
in	Companies	Eloquent
by	SQL	Statement	Constructors
IEEE	BigData	2017	(Boston)	Dec.	11
Toshiyuki	Shimono
Digital	Garage,	Inc.
Work	Contributions
1. For	exploring	an	unknown	DB,	
Ø Organized	the	milestones.
Ø Conceived	the	methods.
2. Proposed	a	beneficial	software	tool	for	“Big	Data”.
Ø Seems	that	no	other	tools	except	[Shimono	16],
based	on	the	surveys	 [Saltz,	Shamshurin 16],	[Kumar,	Alencar 16].
3. Reducing	labor	to	understand	a	DB.
Ø By	shrinking	it	from	months	to	a	week.
Ø “Knowing” latently dominates	a	data	analysis	project.
A	similar	slide	appears	
again	in	the	ending.
2
I.
Background
6	slides
3
Background
• Many	organizations	have	accumulated
their	own	business	data,	in	the	recent	years.
• But	actually,	their	DB	are	rarely	well	designed.	
Thus	their	data	is	far	from	being	fully	utilized.	
4
The	real	situation	today	as	of	2017
The	data	accumulated	
is	so	big	and	complex.
Which	part	of	it	should	
be	taken	for	analysis?
Which	tables are	needed?
Which	columns are	needed?
Where	is	the	meaningful date/user columns?	
How	many	bytes	will	be	exported?
What	do	the	tables/columns	mean?
How	can	the	dates/customers	be	narrowed	down?
How	is	the	exported	data	damage	detected?
And	the	database	system	is	so	old	
in	that	meaningful	“pre-analysis”	
is	very	difficult!
5
How	can	data	scientists	utilize	data?	
So	many	tables	and	columns.
Difficulties	occur	in:
Øknowing	the	meanings,
Øreading	the	documents,
Ødiscussing	with	the	clients.	
What	is	the	good	way	for	
utilizing	data	sleeping	in	
the	data	base	?	
6
▲ Many	tables,	each	entailing	many	columns	!
1.	Understanding	DB	
3.	Serendipitous	discovery	in	Business
by	some	advanced	analysis
2.	New	environment	building	for	analysis
Ø Are	the	data	effective	to	analyze?
Ø What	are	special/error	values?
Ø How	columns	are	connected	over	tables?
7
Preliminary	Knowledge
•Database	is	a	collection	of	tables.	
•A	table	is	like	a	MS	Excel	sheet,	
with	rows (records) and	columns (attributes).	
•Many	Databases	are	handled	by	SQL.	
such	as	MySQL,	Oracle,	PostgreSQL,	SQL	Server.
8
Ø Some	columns	are	connected	to	share	the	same	coding	system.
Ø Then	how	can	one	determine	all	of	the	connected	columns?
9uOne	needs	to	see	the	values of	each	column,	but	how?
Retouched.
https://commons.wikimedia.org/
wiki/File:Data_model_in_ER.png
II.
Introductions	of	
the	novel	software
10	slides
10
•Current	software	doesn’t	
cover	the	needs	today.
•New	software	is	necessary.
•So	I	created	it	for	
SQL-type	DB.
11
Assumption	in	environment
n CLI (Command	Line	Interface)
n to	produce	SQL	statements.
n to	store	the	data.
n to	process	the	data.
n SQL-type	DB.
▲ Command	Line	Interface	(CLI) ▲ SQL	Client	software
SQL	statements	
are	entered	here.
The	SQL	
output
appears	here.
12
Complement	:	SQL	statements
create	table	T	(x	numeric,	y	varchar,	z	date)		ß Make	a	table.
insert	into	T	values	(2,	’abc’	,	’2017-12-11’)		ß add	a	record.
select	*	from	T			ß output	all	the	records	of	T.
select	count(*)	from	T	 ß The	record	number	of	T.
13
To	get	an	“listed”	result	by	SQL	:
1.	Prepare	the	SQL	statement	:
2.	The	returned	table	by	the	SQL	statement	:
This	output	is	much	useful,	
but	the	SQL	statement	is	
too	long	to	manually	enter.		
So	SQL	statement	
generator	is	desirable!	
14
Time	flies.	Time	info	are	helpful.
Process-time	
and	date-time	
information	
are	attached.
15
A	combination	of	
(20	of) SQL	
statements	yielded	
by	the	same	
command	
(using	an	option).
16
SQL	statements	are	yielded	in	the	CLI	environment.
20	commands	for	many	functions
Each	command	receives	either	:	
(1)	table	names	or	
(2)	column	names	with	their	table	names
Each	command	utilizes	option	switches	:
--help	:	to	show	the	online	manual
-a,	-b,	-c	..	,	-z	:	various	minor	functions.
17
The	program	functions	
18
Program	name What	function	the produced	SQL	statement(s)	has.
serverInfo SQL	DB	system	version	information.
tableLines Counting the	records	of each	table.
tableColumns Column	information	of	all.
sampleRows Random	sampling of	rows.
minMax Taking	min/max	of	each columns.	Also	taking	the	4	values.
mostFreq/FewId Taking	the	most/few	frequent	values	of	each columns.
distinctCount Counting distinct	values	of	each	columns.
hasChar/nullCount Counting the	values	with	specific	character	or	null	values.
byteTable/byteCol Compute	or	estimate	the	byte-size	of	each	table or	column.
vennTwo To	calculate how	sets	of	values	overlap.
newTable Creating	a table	with	ease.
hashSum Summing numerically	mapped	SHA-1	value	to	compare	tables.
SQL	generators	Demo	(PowerPoint	animation)
19
GitHub	page (program	repository)
20
Find	the	webpage:
github.com/tulamili
Both	English	and	Japanese	skills	are	
necessary	to	use	it.	Sorry!
To	improve	the	UI	on	CLI	:
• I	have	been	creating	commands	one	by	one
with	the	policy	of	“using	2	English	words	for	a	program”.
• To		keep	clean	the	name	space of	
Unix/Linux	command	names,	UI	should	be	altered.
• Next	step	would	be	like	this, the	style	of	using	a	
command	argument	to	specify	the	function.
21
Skip	this	page	unless	time	is	enough.
III.
Tricky	functions
to	see	the	values	of	DB
11	slides
22
What	is	the	most	concise	way	
to	see	the	values	??
Ø Column	names	don’t	usually	tell	if	the	values	are	:
Ø substance	name	(man,	woman,	Japan,	USA,	..)
Ø coded	value (1,2,	JP,	US,…)
Ø The	column	relations	over	tables	are	uneasy	to	see.
Ø Knowing	the	special/error values	is	a	craftwork.
seeing	the	concrete	values	is	a	must.
23
Idea	to	get	4	values	from	each	column
24
(1) Color	the	values	if	their	first	character	is	the	minimum	character.
(2) From	the	colored	values,	extract	the	minimum	and	the	maximum.
(3) From	the	uncolored	values,	extract	the	minimum	and	the	maximum.
(4) Those	4	values	*would*	tell	the	column	characteristic	well	J
What	is	the	good/simple	method	to	get	some	typical	values	from	a	column
if	its	data	type	is	text,	number,	date	or	whatever?
The	Venn	Diagram	and	SQL	statement
All	the	values	from	a	column
All	those	whose	first	digit	
is	the	minimum.
All	the	others
The	minimum
of	the	above
v11
The	maximum
of	the	above
v12
The	minimum
of	the	above
v21
The	maximum
of	the	above
v22
select	C	from T	where
left(C,1)	=	(select min(left(C,1))	from T)
select	C from T	where
left(C,1)	!=	(select min(left(C,1))	from T)
select	min(C),	max(C)	from T	where
left(C,1)	=	(select min(left(C,1))	from T)
select	min(C),	max(C)	from T	where
left(C,1)	!=	(select min(left(C,1))	from T)
25
Skip	this	page	unless	time	is	enough.
Are	the	4	values	enough	to	see	a	column?
26
Skip	this	page	unless	time	is	enough.
• 2	values	(e.g. min/max) would	not	work	L.
• 4	values	can	cause	misleading	in	small	possibility,
but	it	actually	works	well	as	shown	later,	so	far.
• How	about	5	or	6	or	more	values	:
• The	min/max	from	the	3rd	set	can	be	added.
• Indeed	good	to	see	the	various/lengthy	text	values	J .
• But	it	is	becoming	not	simple.	Requiring	complex	SQL.
• Much	computation	time	as	I	once	tried L .
Applied	to	the	whole	columns
27
Time	dimension
Time	dimension
Time	dimension
User	dimension
User	dimension
Weight	dimension
Non-numeric	order
Numeric	order
What	if	only	2	values?
28Hided	meaningful	minimum	2014-07-07.
Hided	meaningful	minimum	“-9990”.	
Hided	meaningful	minimum	“-5”.
Hided	existence	of	“00000”.
This	table	only	assures	there	exists	at	least	
2	distinct	values	for	each	original	column.
(3	or	4	instead	of	2	is	desirable.)
Only	1	country	codes	can	be	seen	
due	to	the	existence	of	special	value	“ZZZ”.
Skip	this	page	unless	
time	is	enough.
select	min(C),	max(C)	from	T
Complement:	SQL	statements.
29
Relations	found	sharing	same	codes
30
Special/anomalous	values
31
Cf.	random	sampling
How	about	the	random	sampling?
1.	SQL	statement	building	
2.	The	SQL	output	(part	of	the	results)
32
Randomness	helps	to	see	column	relevance
• “Age”	and	“marriage”	are	yellow-back	colored.	
• Probably,	1 means	married,	2 means	unmarried.
33
Estimating	how	2	tables	differ
34
Assume	you	can	access	to	both	“the	running	DB”	and	its	exported	data.	Exporting	may	take	
a	lot	of	time,	so	“data	change	by	time”	occurs.	Then,	how	you	can	estimate	the	number	of	
different	records	between	the	two?	Establishing	the	method	is	required.
I	tried	using	SHA-1	function	to	see	the	difference.	Only	6	lines	was	the	line	counting	
difference,	but	actually	they	differ	in	somewhere	[83,441]	in	the	95%	confidence.
You	can	assume	each	of	the	3	values	
on	a	row	like	a	Gaussian	variable	
according	to	the	variance	
determined	by	the	number	of	the	
record	of	each	table,	T1,	T2,	and	
(T1-T2)	U (T2-T1),	respectively.	By	
changing	the	conditions,	you	got	the	
12	repetition	measurements.	Then	
you	can	assume	the	record	numbers	
based	on	the	estimation	of	the	
population	variance	as	shown	in	the	
lower	part	of	the	table.
Skip	this	page	
unless	time	is	
enough.
Continued	from	
the	previous	slide.
35
If	you	sum	up	N	variables	(in	i.i.d.)		from	a	distribution	with	the	mean	zero	
and	the	variance	one,	then	the	summation	obeys	a	distribution	which	is	well	
approximated	by	the	normal	distribution	with	the	mean	zero	and	the	variance	
N.	
If	you	got	such	number	in	the	repetition	of	K	times,	then	how	is	it	possible	to	
estimate	the	number	N	backward?	It	can	be	estimated	from	the	total	of	the	
square	of	that	K	values	divided	by	2.5%-tile	and	97.5-tile	points	of	the	chi	
square	distribution	with	K	degrees	of	freedom.
And	an	easy	computation	of	taking	a	variable	with	the	mean	zero	and	the	
variance	one	is	to	transform	the	SHA-1	value	into	[	- sqrt(3)	,	sqrt(3)	]	.	
Skip	this	page	unless	
time	is	enough.
IV.
Summary
3	slides
36
Row	numbers,		table	comparison.
The	4	value	taking,	random	sampling
Determining	all	the	same	code	sharing.
Random	sampling	from	the	special	lines.
Steps	to	know	DB	toward	analysis	:
1. Knowing	the	tables.
2. Knowing	the	columns	(individually).
3. Knowing	the	column	connections	(relations).
4. Knowing	how	(row-wise)	special	conditions	occur.
Those	above	should	be	fulfilled	before	going	beyond.
37
DB
SQL	cmd
generator
Table
info
Column
info
Short-cutting
operations
Extracted
info Findings	before
main-analysis
Generated
SQL	cmd
Concrete
values
ü Value
formats
ü Special/err
values
ü Columns’
relations
ØMeanings
Simpler	table(s)
<- column	selecting
<- time(date)	narrowing
<- customer	narrowing
Ø Visualization
Ø Math	methods
Business	Value
by	main-analysis
Big	discovery	from	data	+	Big	business	values
An	application	example.
1. You	may	have	a	lot	of	tables.
2. You	understand	each	column	of	them	by	:	
• seeing	some	of	the	concrete	values,
• seeing	the	special	and	anomalous	values,
• determining	all	of	the	same	code	sharing	columns.
3. Thereafter,	you	can	:
1. narrow	down	to	modest-sized	tables.
2. easily	handle	the	data	for	visualizations.
3. summarize	the	data	you	need	into	one	table	
that	can	be	handled	by	many	mathematical	methods.
39
40
Contributions	(summary)
1. For	exploring	an	unknown	DB,	
Ø Organized	the	milestones.
Ø Conceived	the	methods.
2. Proposed	a	beneficial	software	tool	for	Big	Data.
Ø Seems	that	no	other	tools	except	[Shimono	16],
based	on	the	surveys	 [Saltz,	Shamshurin 16],	[Kumar,	Alencar 16].
3. Reducing	labor	to	understand	a	DB.
Ø By	shrinking	it	from	months	only	to	a	week.
Ø “Knowing” latently dominates	a	data	analysis	project.
41
V.
Extra	Slides
9	slides
42
We	must	“understand	DB	contents”
⏤ before	any	analysis
Reasons	:	
1. Effectiveness	check	for	analysis	purpose
2. Seeing	typical/special/anomalous	values
3. Handling	relations among	columns
4. Rebuilding	another	DB	environments
43
1.	Understanding	DB	
3.	Business-related	calculation	(monthly	sales,..)
Advanced	analysis	employing	math-related	methods
2.	New	environment	building	for	analysis
※ Note:	Preprocessing exists	everywhere,	but	we	do	not	touch	this	explicitly.
1. Effectiveness	check	for	analysis	purpose
2. Seeing	typical/special/anomalous	values
3. Handling	relations among	columns
4. Rebuilding	another	DB	environments
Reasons	why	we	must	understand	DB	:
We	focus	on	
DB	understanding
44
Squirrel	SQL	(since	2001) 45
Detail:	Line	Number	Listing	Example	
The	command	“lineNumber”	
can	yield	various	type	of	SQL	
statements	by	utilizing	
command	option	such	as	-n,	-t.
To	properly	make	output,	
it	is	designed	so	that	
the	SQL		output	contains	:	
1)	sequence	number,
2)	table	(and	column)	names,
3)	process	time	in	seconds,
4)	the	time	of	calculations.
46
ü A	DB has	tables which	have	columns which	have	values.	
Ø One	needs	to	determine	column	connections over	tables.
47
©	2013	Microsoft	Corporation.	
All	rights	reserved.
uOne	needs	to	see	the	values of	each	column,	but	how?
How	to	see	values	in	each	column.
48
To	output	an	“integrated”	table	by	SQL	:
1.	A	new	command	yields	a	SQL	statement	:
2.	The	returned	table	by	query	of	the	SQL	statement	:
This	output	is	much	useful,	
but	the	SQL	statement	is	
too	long	to	manually	enter.		
Thus	SQL	statement	
generator	is	desirable!	
Outputted	by	“newCmd <	tables.txt”
49
Deciphering	so	many	columns	at	once.
50
Are	the	4	values	enough	to	see	a	column?
51
Skip	this	page	unless	time	is	enough.
• Only	2	values	(e.g. min/max) would	not	work	L.
• Only	4	values	may	cause	misleading	possibly L.
• Aligning	more	than	4	values	:
• The	min/max	from	some	(the	third)	set	can	be	added.
• Indeed	good	to	see	the	various/lengthy	text	values	J .
• Much	computation	time	as	I	once	tried L .
• SQL	may	really	need	“second_min”	and	“second_max”.
• Misc.
• Null	value	care	is	desirable.
• The	frequency	number	may	be	desirable.	
• The	value	lengths	information	is	helpful.
52
Random	Sampling,	also	weighting
53
Remaining	issues	⏤ before	
to	build	new	DB	env.	for	analysis
Combinational	explosion in	calculation	can	occur
to	reduce	the	redundancy	of	columns/rows.
• Grasping	all	the	redundant	columns	
through	knowing	the	relations	inside	a	table:	
1. The	values	of	2	or	more	columns	of	every	row	
has	the same	values.
2. The	values	of	a	column	can	be	determined	other	
column	values.
• Grasping	all	the	redundant	rows	
• How	to	know	the	condition	whether	a	column	has	a	
value	of	null,	special,	anomalous,	rare values,	when
the	other	column	values	seems	to	have	clue?
54
55
DB
SQL	cmd
generator
Table
info
Column
info
Short-cutting
operations
Extracted
info Findings	before
main-analysis
Generated
SQL	cmd
Concrete
values
ü Value
formats
ü Special/err
values
ü Columns’
relations
ØMeanings
Simpler	table(s)
<- column	selecting
<- time(date)	narrowing
<- customer	narrowing
Ø Visualization
Ø Math	methods
Business	Value
by	main-analysis
Big	discovery	from	data	+	Big	business	values

Más contenido relacionado

La actualidad más candente

Decoding Data Science
Decoding Data ScienceDecoding Data Science
Decoding Data ScienceMatt Fornito
 
Big Data Analytics - Introduction
Big Data Analytics - IntroductionBig Data Analytics - Introduction
Big Data Analytics - IntroductionAlex Meadows
 
Big Tools for Big Data
Big Tools for Big DataBig Tools for Big Data
Big Tools for Big DataLewis Crawford
 
Crowdsourced Data Processing: Industry and Academic Perspectives
Crowdsourced Data Processing: Industry and Academic PerspectivesCrowdsourced Data Processing: Industry and Academic Perspectives
Crowdsourced Data Processing: Industry and Academic PerspectivesAditya Parameswaran
 
Presentation on Big Data Analytics
Presentation on Big Data AnalyticsPresentation on Big Data Analytics
Presentation on Big Data AnalyticsS P Sajjan
 
Session 10 handling bigger data
Session 10 handling bigger dataSession 10 handling bigger data
Session 10 handling bigger databodaceacat
 
Big Data and the Art of Data Science
Big Data and the Art of Data ScienceBig Data and the Art of Data Science
Big Data and the Art of Data ScienceAndrew Gardner
 
Tools and Methods for Big Data Analytics by Dahl Winters
Tools and Methods for Big Data Analytics by Dahl WintersTools and Methods for Big Data Analytics by Dahl Winters
Tools and Methods for Big Data Analytics by Dahl WintersMelinda Thielbar
 
Big Data Analysis Patterns with Hadoop, Mahout and Solr
Big Data Analysis Patterns with Hadoop, Mahout and SolrBig Data Analysis Patterns with Hadoop, Mahout and Solr
Big Data Analysis Patterns with Hadoop, Mahout and Solrboorad
 
Big Data Science: Intro and Benefits
Big Data Science: Intro and BenefitsBig Data Science: Intro and Benefits
Big Data Science: Intro and BenefitsChandan Rajah
 
Big Data Tutorial | What Is Big Data | Big Data Hadoop Tutorial For Beginners...
Big Data Tutorial | What Is Big Data | Big Data Hadoop Tutorial For Beginners...Big Data Tutorial | What Is Big Data | Big Data Hadoop Tutorial For Beginners...
Big Data Tutorial | What Is Big Data | Big Data Hadoop Tutorial For Beginners...Simplilearn
 

La actualidad más candente (20)

DataHub
DataHubDataHub
DataHub
 
00 hadoop welcome_transcript
00 hadoop welcome_transcript00 hadoop welcome_transcript
00 hadoop welcome_transcript
 
Big data abstract
Big data abstractBig data abstract
Big data abstract
 
Decoding Data Science
Decoding Data ScienceDecoding Data Science
Decoding Data Science
 
Big Data Analytics - Introduction
Big Data Analytics - IntroductionBig Data Analytics - Introduction
Big Data Analytics - Introduction
 
Are you ready for BIG DATA?
Are you ready for BIG DATA?Are you ready for BIG DATA?
Are you ready for BIG DATA?
 
Big Tools for Big Data
Big Tools for Big DataBig Tools for Big Data
Big Tools for Big Data
 
Unit 3 part 2
Unit  3 part 2Unit  3 part 2
Unit 3 part 2
 
Crowdsourced Data Processing: Industry and Academic Perspectives
Crowdsourced Data Processing: Industry and Academic PerspectivesCrowdsourced Data Processing: Industry and Academic Perspectives
Crowdsourced Data Processing: Industry and Academic Perspectives
 
Data science and_analytics_for_ordinary_people_ebook
Data science and_analytics_for_ordinary_people_ebookData science and_analytics_for_ordinary_people_ebook
Data science and_analytics_for_ordinary_people_ebook
 
Bigdata " new level"
Bigdata " new level"Bigdata " new level"
Bigdata " new level"
 
Presentation on Big Data Analytics
Presentation on Big Data AnalyticsPresentation on Big Data Analytics
Presentation on Big Data Analytics
 
Session 10 handling bigger data
Session 10 handling bigger dataSession 10 handling bigger data
Session 10 handling bigger data
 
Big Data: Issues and Challenges
Big Data: Issues and ChallengesBig Data: Issues and Challenges
Big Data: Issues and Challenges
 
Big Data and the Art of Data Science
Big Data and the Art of Data ScienceBig Data and the Art of Data Science
Big Data and the Art of Data Science
 
Tools and Methods for Big Data Analytics by Dahl Winters
Tools and Methods for Big Data Analytics by Dahl WintersTools and Methods for Big Data Analytics by Dahl Winters
Tools and Methods for Big Data Analytics by Dahl Winters
 
Big Data Analysis Patterns with Hadoop, Mahout and Solr
Big Data Analysis Patterns with Hadoop, Mahout and SolrBig Data Analysis Patterns with Hadoop, Mahout and Solr
Big Data Analysis Patterns with Hadoop, Mahout and Solr
 
Big Data Analytics
Big Data AnalyticsBig Data Analytics
Big Data Analytics
 
Big Data Science: Intro and Benefits
Big Data Science: Intro and BenefitsBig Data Science: Intro and Benefits
Big Data Science: Intro and Benefits
 
Big Data Tutorial | What Is Big Data | Big Data Hadoop Tutorial For Beginners...
Big Data Tutorial | What Is Big Data | Big Data Hadoop Tutorial For Beginners...Big Data Tutorial | What Is Big Data | Big Data Hadoop Tutorial For Beginners...
Big Data Tutorial | What Is Big Data | Big Data Hadoop Tutorial For Beginners...
 

Similar a Make Accumulated Data in Companies Eloquent by SQL Statement Constructors (PDF)

Data Science towards the Digital Enterprise
Data Science towards the Digital EnterpriseData Science towards the Digital Enterprise
Data Science towards the Digital EnterpriseJake Bouma
 
Self-Service Data Analysis, Data Wrangling, Data Munging, and Data Modeling –...
Self-Service Data Analysis, Data Wrangling, Data Munging, and Data Modeling –...Self-Service Data Analysis, Data Wrangling, Data Munging, and Data Modeling –...
Self-Service Data Analysis, Data Wrangling, Data Munging, and Data Modeling –...DATAVERSITY
 
Advanced Analytics and Machine Learning with Data Virtualization
Advanced Analytics and Machine Learning with Data VirtualizationAdvanced Analytics and Machine Learning with Data Virtualization
Advanced Analytics and Machine Learning with Data VirtualizationDenodo
 
Thinking Outside the Cube: How In-Memory Bolsters Analytics
Thinking Outside the Cube: How In-Memory Bolsters AnalyticsThinking Outside the Cube: How In-Memory Bolsters Analytics
Thinking Outside the Cube: How In-Memory Bolsters AnalyticsInside Analysis
 
From Volume to Value - A Guide to Data Engineering
From Volume to Value - A Guide to Data EngineeringFrom Volume to Value - A Guide to Data Engineering
From Volume to Value - A Guide to Data EngineeringRy Walker
 
Big Data Analytics Research Report
Big Data Analytics Research ReportBig Data Analytics Research Report
Big Data Analytics Research ReportIla Group
 
Collaboration - Dr Peter Gee, Overseas Development Institute
Collaboration - Dr Peter Gee, Overseas Development InstituteCollaboration - Dr Peter Gee, Overseas Development Institute
Collaboration - Dr Peter Gee, Overseas Development InstituteCo-Operative Systems
 
An Comprehensive Study of Big Data Environment and its Challenges.
An Comprehensive Study of Big Data Environment and its Challenges.An Comprehensive Study of Big Data Environment and its Challenges.
An Comprehensive Study of Big Data Environment and its Challenges.ijceronline
 
Search-based BI. Getting ready for the next wave of innovation in Business In...
Search-based BI. Getting ready for the next wave of innovation in Business In...Search-based BI. Getting ready for the next wave of innovation in Business In...
Search-based BI. Getting ready for the next wave of innovation in Business In...grauw
 
Data Architecture Process in a BI environment
Data Architecture Process in a BI environmentData Architecture Process in a BI environment
Data Architecture Process in a BI environmentSasha Citino
 
Big data analytics, research report
Big data analytics, research reportBig data analytics, research report
Big data analytics, research reportJULIO GONZALEZ SANZ
 
Business intelligence 3.0 and the data lake
Business intelligence 3.0 and the data lakeBusiness intelligence 3.0 and the data lake
Business intelligence 3.0 and the data lakeData Science Thailand
 
SharePoint - You've got it, now what?
SharePoint - You've got it, now what?SharePoint - You've got it, now what?
SharePoint - You've got it, now what?Robert Crane
 
Bda assignment can also be used for BDA notes and concept understanding.
Bda assignment can also be used for BDA notes and concept understanding.Bda assignment can also be used for BDA notes and concept understanding.
Bda assignment can also be used for BDA notes and concept understanding.Aditya205306
 

Similar a Make Accumulated Data in Companies Eloquent by SQL Statement Constructors (PDF) (20)

Bigdata
BigdataBigdata
Bigdata
 
Data Science towards the Digital Enterprise
Data Science towards the Digital EnterpriseData Science towards the Digital Enterprise
Data Science towards the Digital Enterprise
 
Sq lite module1
Sq lite module1Sq lite module1
Sq lite module1
 
Self-Service Data Analysis, Data Wrangling, Data Munging, and Data Modeling –...
Self-Service Data Analysis, Data Wrangling, Data Munging, and Data Modeling –...Self-Service Data Analysis, Data Wrangling, Data Munging, and Data Modeling –...
Self-Service Data Analysis, Data Wrangling, Data Munging, and Data Modeling –...
 
Advanced Analytics and Machine Learning with Data Virtualization
Advanced Analytics and Machine Learning with Data VirtualizationAdvanced Analytics and Machine Learning with Data Virtualization
Advanced Analytics and Machine Learning with Data Virtualization
 
Thinking Outside the Cube: How In-Memory Bolsters Analytics
Thinking Outside the Cube: How In-Memory Bolsters AnalyticsThinking Outside the Cube: How In-Memory Bolsters Analytics
Thinking Outside the Cube: How In-Memory Bolsters Analytics
 
Big data analytics
Big data analyticsBig data analytics
Big data analytics
 
From Volume to Value - A Guide to Data Engineering
From Volume to Value - A Guide to Data EngineeringFrom Volume to Value - A Guide to Data Engineering
From Volume to Value - A Guide to Data Engineering
 
Big Data Analytics Research Report
Big Data Analytics Research ReportBig Data Analytics Research Report
Big Data Analytics Research Report
 
Collaboration - Dr Peter Gee, Overseas Development Institute
Collaboration - Dr Peter Gee, Overseas Development InstituteCollaboration - Dr Peter Gee, Overseas Development Institute
Collaboration - Dr Peter Gee, Overseas Development Institute
 
An Comprehensive Study of Big Data Environment and its Challenges.
An Comprehensive Study of Big Data Environment and its Challenges.An Comprehensive Study of Big Data Environment and its Challenges.
An Comprehensive Study of Big Data Environment and its Challenges.
 
Search-based BI. Getting ready for the next wave of innovation in Business In...
Search-based BI. Getting ready for the next wave of innovation in Business In...Search-based BI. Getting ready for the next wave of innovation in Business In...
Search-based BI. Getting ready for the next wave of innovation in Business In...
 
Data Architecture Process in a BI environment
Data Architecture Process in a BI environmentData Architecture Process in a BI environment
Data Architecture Process in a BI environment
 
battery pa report.docx
battery pa report.docxbattery pa report.docx
battery pa report.docx
 
Data is not the new snake oil
Data is not the new snake oilData is not the new snake oil
Data is not the new snake oil
 
Big data analytics, research report
Big data analytics, research reportBig data analytics, research report
Big data analytics, research report
 
Business intelligence 3.0 and the data lake
Business intelligence 3.0 and the data lakeBusiness intelligence 3.0 and the data lake
Business intelligence 3.0 and the data lake
 
SharePoint - You've got it, now what?
SharePoint - You've got it, now what?SharePoint - You've got it, now what?
SharePoint - You've got it, now what?
 
A Model of Making
A Model of MakingA Model of Making
A Model of Making
 
Bda assignment can also be used for BDA notes and concept understanding.
Bda assignment can also be used for BDA notes and concept understanding.Bda assignment can also be used for BDA notes and concept understanding.
Bda assignment can also be used for BDA notes and concept understanding.
 

Más de Toshiyuki Shimono

国際産業数理・応用数理会議のポスター(作成中)
国際産業数理・応用数理会議のポスター(作成中)国際産業数理・応用数理会議のポスター(作成中)
国際産業数理・応用数理会議のポスター(作成中)Toshiyuki Shimono
 
インターネット等からデータを自動収集するソフトウェアに必要な補助機能とその実装
インターネット等からデータを自動収集するソフトウェアに必要な補助機能とその実装インターネット等からデータを自動収集するソフトウェアに必要な補助機能とその実装
インターネット等からデータを自動収集するソフトウェアに必要な補助機能とその実装Toshiyuki Shimono
 
extracting only a necessary file from a zip file
extracting only a necessary file from a zip fileextracting only a necessary file from a zip file
extracting only a necessary file from a zip fileToshiyuki Shimono
 
A Hacking Toolset for Big Tabular Files -- JAPAN.PM 2021
A Hacking Toolset for Big Tabular Files -- JAPAN.PM 2021A Hacking Toolset for Big Tabular Files -- JAPAN.PM 2021
A Hacking Toolset for Big Tabular Files -- JAPAN.PM 2021Toshiyuki Shimono
 
新型コロナの感染者数 全国の状況 2021年2月上旬まで
新型コロナの感染者数 全国の状況 2021年2月上旬まで新型コロナの感染者数 全国の状況 2021年2月上旬まで
新型コロナの感染者数 全国の状況 2021年2月上旬までToshiyuki Shimono
 
Multiplicative Decompositions of Stochastic Distributions and Their Applicat...
 Multiplicative Decompositions of Stochastic Distributions and Their Applicat... Multiplicative Decompositions of Stochastic Distributions and Their Applicat...
Multiplicative Decompositions of Stochastic Distributions and Their Applicat...Toshiyuki Shimono
 
Theory to consider an inaccurate testing and how to determine the prior proba...
Theory to consider an inaccurate testing and how to determine the prior proba...Theory to consider an inaccurate testing and how to determine the prior proba...
Theory to consider an inaccurate testing and how to determine the prior proba...Toshiyuki Shimono
 
Interpreting Multiple Regression via an Ellipse Inscribed in a Square Extensi...
Interpreting Multiple Regressionvia an Ellipse Inscribed in a Square Extensi...Interpreting Multiple Regressionvia an Ellipse Inscribed in a Square Extensi...
Interpreting Multiple Regression via an Ellipse Inscribed in a Square Extensi...Toshiyuki Shimono
 
BigQueryを使ってみた(2018年2月)
BigQueryを使ってみた(2018年2月)BigQueryを使ってみた(2018年2月)
BigQueryを使ってみた(2018年2月)Toshiyuki Shimono
 
既存分析ソフトへ
データを投入する前に
簡便な分析するためのソフトの作り方の提案
既存分析ソフトへ
データを投入する前に
簡便な分析するためのソフトの作り方の提案既存分析ソフトへ
データを投入する前に
簡便な分析するためのソフトの作り方の提案
既存分析ソフトへ
データを投入する前に
簡便な分析するためのソフトの作り方の提案Toshiyuki Shimono
 
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...Toshiyuki Shimono
 
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...Toshiyuki Shimono
 
企業等に蓄積されたデータを分析するための処理機能の提案
企業等に蓄積されたデータを分析するための処理機能の提案企業等に蓄積されたデータを分析するための処理機能の提案
企業等に蓄積されたデータを分析するための処理機能の提案Toshiyuki Shimono
 
新入社員の頃に教えて欲しかったようなことなど
新入社員の頃に教えて欲しかったようなことなど新入社員の頃に教えて欲しかったようなことなど
新入社員の頃に教えて欲しかったようなことなどToshiyuki Shimono
 
ページャ lessを使いこなす
ページャ lessを使いこなすページャ lessを使いこなす
ページャ lessを使いこなすToshiyuki Shimono
 
Guiを使わないテキストデータ処理
Guiを使わないテキストデータ処理Guiを使わないテキストデータ処理
Guiを使わないテキストデータ処理Toshiyuki Shimono
 
データ全貌把握の方法170324
データ全貌把握の方法170324データ全貌把握の方法170324
データ全貌把握の方法170324Toshiyuki Shimono
 
Macで開発環境を整える170420
Macで開発環境を整える170420Macで開発環境を整える170420
Macで開発環境を整える170420Toshiyuki Shimono
 
大きなテキストデータを閲覧するには
大きなテキストデータを閲覧するには大きなテキストデータを閲覧するには
大きなテキストデータを閲覧するにはToshiyuki Shimono
 

Más de Toshiyuki Shimono (20)

国際産業数理・応用数理会議のポスター(作成中)
国際産業数理・応用数理会議のポスター(作成中)国際産業数理・応用数理会議のポスター(作成中)
国際産業数理・応用数理会議のポスター(作成中)
 
インターネット等からデータを自動収集するソフトウェアに必要な補助機能とその実装
インターネット等からデータを自動収集するソフトウェアに必要な補助機能とその実装インターネット等からデータを自動収集するソフトウェアに必要な補助機能とその実装
インターネット等からデータを自動収集するソフトウェアに必要な補助機能とその実装
 
extracting only a necessary file from a zip file
extracting only a necessary file from a zip fileextracting only a necessary file from a zip file
extracting only a necessary file from a zip file
 
A Hacking Toolset for Big Tabular Files -- JAPAN.PM 2021
A Hacking Toolset for Big Tabular Files -- JAPAN.PM 2021A Hacking Toolset for Big Tabular Files -- JAPAN.PM 2021
A Hacking Toolset for Big Tabular Files -- JAPAN.PM 2021
 
新型コロナの感染者数 全国の状況 2021年2月上旬まで
新型コロナの感染者数 全国の状況 2021年2月上旬まで新型コロナの感染者数 全国の状況 2021年2月上旬まで
新型コロナの感染者数 全国の状況 2021年2月上旬まで
 
Multiplicative Decompositions of Stochastic Distributions and Their Applicat...
 Multiplicative Decompositions of Stochastic Distributions and Their Applicat... Multiplicative Decompositions of Stochastic Distributions and Their Applicat...
Multiplicative Decompositions of Stochastic Distributions and Their Applicat...
 
Theory to consider an inaccurate testing and how to determine the prior proba...
Theory to consider an inaccurate testing and how to determine the prior proba...Theory to consider an inaccurate testing and how to determine the prior proba...
Theory to consider an inaccurate testing and how to determine the prior proba...
 
Interpreting Multiple Regression via an Ellipse Inscribed in a Square Extensi...
Interpreting Multiple Regressionvia an Ellipse Inscribed in a Square Extensi...Interpreting Multiple Regressionvia an Ellipse Inscribed in a Square Extensi...
Interpreting Multiple Regression via an Ellipse Inscribed in a Square Extensi...
 
BigQueryを使ってみた(2018年2月)
BigQueryを使ってみた(2018年2月)BigQueryを使ってみた(2018年2月)
BigQueryを使ってみた(2018年2月)
 
Seminar0917
Seminar0917Seminar0917
Seminar0917
 
既存分析ソフトへ
データを投入する前に
簡便な分析するためのソフトの作り方の提案
既存分析ソフトへ
データを投入する前に
簡便な分析するためのソフトの作り方の提案既存分析ソフトへ
データを投入する前に
簡便な分析するためのソフトの作り方の提案
既存分析ソフトへ
データを投入する前に
簡便な分析するためのソフトの作り方の提案
 
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...
 
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...
To Make Graphs Such as Scatter Plots Numerically Readable (PacificVis 2018, K...
 
企業等に蓄積されたデータを分析するための処理機能の提案
企業等に蓄積されたデータを分析するための処理機能の提案企業等に蓄積されたデータを分析するための処理機能の提案
企業等に蓄積されたデータを分析するための処理機能の提案
 
新入社員の頃に教えて欲しかったようなことなど
新入社員の頃に教えて欲しかったようなことなど新入社員の頃に教えて欲しかったようなことなど
新入社員の頃に教えて欲しかったようなことなど
 
ページャ lessを使いこなす
ページャ lessを使いこなすページャ lessを使いこなす
ページャ lessを使いこなす
 
Guiを使わないテキストデータ処理
Guiを使わないテキストデータ処理Guiを使わないテキストデータ処理
Guiを使わないテキストデータ処理
 
データ全貌把握の方法170324
データ全貌把握の方法170324データ全貌把握の方法170324
データ全貌把握の方法170324
 
Macで開発環境を整える170420
Macで開発環境を整える170420Macで開発環境を整える170420
Macで開発環境を整える170420
 
大きなテキストデータを閲覧するには
大きなテキストデータを閲覧するには大きなテキストデータを閲覧するには
大きなテキストデータを閲覧するには
 

Último

CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 
Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxolyaivanovalion
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...amitlee9823
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% SecurePooja Nehwal
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceDelhi Call girls
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAroojKhan71
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...amitlee9823
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...SUHANI PANDEY
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfLars Albertsson
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxolyaivanovalion
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightDelhi Call girls
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...shambhavirathore45
 
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxBPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxMohammedJunaid861692
 

Último (20)

CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 
Edukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFxEdukaciniai dropshipping via API with DroFx
Edukaciniai dropshipping via API with DroFx
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in  KishangarhDelhi 99530 vip 56974 Genuine Escort Service Call Girls in  Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
Call Girls Hsr Layout Just Call 👗 7737669865 👗 Top Class Call Girl Service Ba...
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
 
Schema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdfSchema on read is obsolete. Welcome metaprogramming..pdf
Schema on read is obsolete. Welcome metaprogramming..pdf
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...
 
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptxBPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
BPAC WITH UFSBI GENERAL PRESENTATION 18_05_2017-1.pptx
 

Make Accumulated Data in Companies Eloquent by SQL Statement Constructors (PDF)