SlideShare a Scribd company logo
1 of 38
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
By
Adel A. Sabour, Ahmed M. Gadallah, and Hesham A. Hefny
Flexible Querying of Relational Databases:
Fuzzy Set BasedApproach
Advanced Machine Learning Technologies and Applications
Communications in Computer and Information Science Volume 488, 2014, pp 446-455
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Agenda
Presentation Outline:
1)Introduction
2)Crisp SQL vs. Fuzzy SQL
3)Motivation
4)Research Problem
5)The Objective
6)Previous work
7)The Proposed Fuzzy Query Approach
8)Fuzzy Queries (FQ) Tool
9)Results
10)Summary
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Introduction
Structured Query Language (SQL) is a very essential
language for querying relational databases. It manipulates
and retrieves data which is crisp and precise by nature. In
contrary, it is unable to respond to human-like queries
which are uncertain, imprecise and vague in nature.
Almost, human queries have a lot of vagueness and
ambiguity due to using his/her subjective linguistic words.
Introduction:
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Introduction
For example, high salaries have different definitions
that depend on each person searching for them.
Consider the query “retrieve the names and addresses
of the university students who have height around the
ideal height for a handball player”. This query cannot be
expressed and manipulated directly by a traditional SQL
statement.
Introduction:
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Introduction
In contrary, it can be expressed and manipulated easily
through a fuzzy query statement in a very flexible and
human-like manner based on the ideas of fuzzy set theory.
Human-like queries depend essentially on manipulation
of linguistic values such as: short, tall, hot and calls human
concepts.
Introduction:
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Introduction
standard SQL adopts classical Boolean expressions with
crisp logical connectors which are too rigid and very limited
in manipulation of linguistic values or linguistic modifiers
such as: about, nearly, fairly, etc. which can be represented
easily based on the concept of fuzzy set.
Introduction:
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Crisp SQL vs. Fuzzy SQL
Example: “Give me the names of the young age and high salary
employees”. This query is modelled in SQL language as follows:
SELECT Emp_name, Emp_age, Emp_salary
FROM Employee
WHERE (Emp_age between 22 and 30)
and (Emp_salary>8)
Basic Concepts of fuzzy set theory
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Crisp SQL vs. Fuzzy SQL
The attribute age, presented in next figure, has the linguistic labels
Young, Adult and Old, defined on the trapezoidal possibility
distributions as following:
YOUNG (18, 22, 30, 35)
ADULT (25, 32, 45, 50)
OLD (50, 55, 62, 70)
An approximate value has a margin of 5.
Basic Concepts of fuzzy set theory
Figure. fuzzy membership function for AGE attribute.6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Crisp SQL vs. Fuzzy SQL
The attribute SALARY, presented in next fig., has the linguistic labels
Low, Medium and High, defined on the trapezoidal possibility
distributions as following:
LOW (1, 1.5, 2.5, 4)
MEDIUM (3, 4.5, 6.5, 8)
HIGH (6, 8, 10, 12)
An approximate value has a margin of 1.5 L.
Basic Concepts of fuzzy set theory
Figure. fuzzy membership function for Salary attribute6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Crisp SQL vs. Fuzzy SQL
Query syntax after those Settings will be written as follows in our
proposed system:
SELECT Emp_name, Emp_age, Emp_salary
FROM Employee
WHERE Age.Young(Emp_age )
and Salary.High(Emp_salary)
Basic Concepts of fuzzy set theory
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Motivation
Most of previously proposed fuzzy query approaches have a
disadvantage that they interpret any fuzzy query statement into a
crisp query statement then evaluate the resulted tuples to compute
their matching degrees to the fuzzy query.
This proposed approach makes it easy to use fuzzy linguistic
values in all clauses of a select statement, not “where” clause only.
The added value of this proposed approach is to accelerate the
execution of fuzzy query statements.
Motivation
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Research Problem
Most of previously developed fuzzy SQL architectures have set of
drawbacks:
1) Have the inability for dealing with multi subjective views when
interacting with multiusers. Instead, preferences are used to help in
reducing the amount of information returned in response to user
queries.
2) Lack of a standardized format in writing statements that is each
tool has its own syntax. On the other hand, most of the proposed
approaches depend mainly on using a time consuming
parser/translator to check and convert fuzzy queries to crisp SQL
queries.
Research Problem
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Research Problem
3) Most of proposed approaches depend mainly on using a
time consuming parser/translator to check and convert
fuzzy queries to crisp SQL queries.
4) Some approaches process nested and correlated fuzzy
queries inefficiently.
Research Problem
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Research Problem
5) Most of approaches define a Meta base named Fuzzy
Meta-knowledge Base (FMB) that includes a set of tables to
store all necessary information to describe and manipulate
fuzzy attributes and terms values.
This slows down the process of querying because each
generated fuzzy query must be analyzed and translated into
a standard SQL statement respecting the definitions of all
used fuzzy terms or operators stored in FMB.
Research Problem
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
The Objective
The Objective
The main objective of the proposed fuzzy query
approach is to overcome the above disadvantages by
evaluating each tuple directly through the use of stored
database objects namely packages, procedures and
functions. Consequently, the response time of executing
a fuzzy query statement will be reduced.
6:35:14 PM
Human-Like Data-Sensitive fuzzy-Based Query Approach for Relational
Databases
Previous work
Previous work
FSQL proposed by Galindo [10] has been conceived with a mild coupling
architecture as shown in figure. FSQL is integrated through stored procedures and
functions.
Figure 4. FSQL implementation architecture (FRDB) by Galindo [10]
Human-Like Data-Sensitive fuzzy-Based Query Approach for Relational
Databases
Previous work
Previous work
FSQL proposed by Galindo [10]
The drawbacks:
1. The proposed approach depend mainly on using a time consuming
parser/translator to check and convert fuzzy queries to crisp SQL queries.
2. The approach define a Meta base named Fuzzy Meta-knowledge Base (FMB)
that includes a set of tables to store all necessary information to describe and
manipulate fuzzy attributes and terms.
Such FMB must be accessed each time a fuzzy query statement is
generated. This operation is essential in order to obtain the definitions
of each used fuzzy term in order to complete the processing of the
generated fuzzy query statement which is a time consuming.
3. No querying of relational databases using non-stationary or data sensitive
fuzzy values.
Human-Like Data-Sensitive fuzzy-Based Query Approach for Relational
Databases
Previous work
Previous work
Also, another approach for fuzzy query called SQLf is proposed by Bosc in [11]. As
shown in its architecture in Figure.
Figure 5. SQLf implementation architecture by Bosc & Pivert [11].
Human-Like Data-Sensitive fuzzy-Based Query Approach for Relational
Databases
Previous work
Previous work
FSQL proposed architecture by Bosc & Pivert [11].
The drawbacks:
1. The proposed approach depend mainly on using a time consuming
parser/translator to check and convert fuzzy queries to crisp SQL
queries.
2. The approach define a Meta base named Fuzzy Meta-knowledge
Base (FMB)
3. No querying of relational databases using non-stationary or data
sensitive fuzzy values.
4. The lack of a standardized format in writing statements , each
tool has its own syntax.
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
The Proposed Fuzzy Query Approach
The Proposed Fuzzy Query Approach
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
The Proposed Fuzzy Query Approach
The Proposed Fuzzy Query Approach
The proposed fuzzy query approach aims mainly to
support human-like queries which almost contain
linguistic terms and fuzzy connectors. Such linguistic
terms include linguistic variables, linguistic values, fuzzy
hedges and fuzzy numbers. The proposed approach
enhances the definition and manipulation of such
linguistic terms.
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
The Proposed Fuzzy Query Approach
The Proposed Fuzzy Query Approach
Each defined linguistic term will be stored as a database
object namely stored function within a related stored
package. In consequence, a user can use any of his
defined linguistic terms in any clause in a select
statement as using a user defined stored function.
Accordingly, the defined linguistic terms can be used
easily in even nested, complex and correlated query
statements without the need for complex procedures to
execute the query statement.
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
A Fuzzy Query Tool based on the proposed approach
A Fuzzy Queries Tool
Register/Login to FQ
At the first time the user aims to interact with the tool,
he/she must create an account with a user name and a
password. After that, the user can define his/her own
linguistic terms via the tool GUI. Consequently, each
created stored database object within the user session
becomes part of the user fuzzy profile. Also, the user
can generate a fuzzy query statement using his/her
predefined linguistic terms and execute it.
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
A Fuzzy Query Tool based on the proposed approach
A Fuzzy Queries Tool
Linguistic Variables Service
This service allows creating, modifying or deleting a linguistic
variable/labels that has a set of linguistic values that will be
defined over it. The user enters just the name of the linguistic
variable. For example, a linguistic variable may be a computer
grades, temperature degree, height or salary as shown in next
figure.
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
A Fuzzy Query Tool based on the proposed approach
A Fuzzy Queries Tool
Linguistic Values Services
This service is responsible for defining a set of linguistic
values over a specific linguistic variable. Through a graphical
user-friendly representation, the user can check the linguistic
values definitions and its overlapping for a specific linguistic
variable. The graphical representation will help the user to
make the effective modifications in the selected membership
function to satisfy the meaning of the linguistic value.
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
A Fuzzy Query Tool based on the proposed approach
A Fuzzy Queries Tool
Linguistic Values Services
The user can draw these
values (Control Points)
only, or add to the values
set by or delete the
previous drawing. Then
add these values to the
Linguistic Value to add
other Linguistic Value for
the same Linguistic
Variable. And so on, until
the user saves all the
values6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
A Fuzzy Query Tool based on the proposed approach
A Fuzzy Queries Tool
Fuzzy SQL Query Service
This service enables the user to generate fuzzy query statements
using the syntax of traditional SQL language. After the execution
of the generated fuzzy query statement, the result it displayed as
shown in next Fig.
The next query statement is generated to obtain each employee
first name, salary and a matching degree specifying how much
such salary is high
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Fuzzy SQL Query Service
A Fuzzy Queries Tool
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Results
Results
Using a fuzzy expression in where clause
Passing a fuzzy expression as an argument to a function
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Results
Results
complex queries including joining of two or more tables are
supported. The resulted tuples can be sorted using their matching
degree to the specified fuzzy criteria in the generated fuzzy query
statement.
This query statement
aims to retrieve each
student Id, student
name, physics grade
and a matching
degree specifies how
much such student if
failed in physics
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Results
Results
Creating a database view based of fuzzy expressions
An example of a correlated Fuzzy query statement
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Results
Results
In order to enhance the previous query statement to show each
employee name, salary, the average salary of his/her department
and a matching degree representing how much the employee
salary is closed to such average, the fuzzy query statement shown
in next fig. is used. The result of such a query statement shows
that the more closed salary to the average, the higher the
matching degree
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Summary
Summary
the proposed approach depends mainly on storing all used fuzzy
terms as database objects in an organized fashion. Such stored
database objects resembles the user fuzzy profile.
the fuzzy query syntax is identical to the standard SQL language
due to the use of stored database objects for representing the
fuzzy terms. In other words, any generated fuzzy query statement
agrees with the standard SQL language.
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Summary
Summary
Consequently, a fuzzy query statement can be generated directly
as a traditional SQL statement using the fuzzy terms predefined as
database objects. In consequent, there is no need for an analyzer
or a translator to covert a generated fuzzy query into an
executable query statement.
Also, there is no need for a Fuzzy Meta-Knowledgebase that
existed in most of previously proposed approaches for fuzzy
queries. Hence, not only the complexity of allowing a fuzzy query
is reduced but also the response time of executing such query.
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
Summary
Summary
The proposed approach allows simple, complex, nested and
correlated fuzzy query statements in a human-like fashion which
almost contain linguistic terms and fuzzy connectors. Also,
because linguistic terms are represented as a set of user defined
stored functions; the proposed approach allows writing any
simple, nested, correlated and complex fuzzy query statements as
traditional select statements in a very flexible manner.
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
(Questions)
Flexible Querying of Relational Databases :
Fuzzy Set Based Approach
Speaker: Adel Sabour
Email: adelsabour@gmail.com
Phone: 01120200131
Advanced Machine Learning Technologies and Applications
Communications in Computer and Information Science Volume 488, 2014, pp 446-455
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
References
1) Mishra, J.: Fuzzy Query Processing. International Journal of Research and Reviews in
Next Generation Networks 1(1) (March 2011)
2) Grissa, A., Ben Hassine, M.: New Architecture of Fuzzy Database Management Systems.
The International Arab Journal of Information Technology 6(3) (July 2009)
3) Qi, Y., et al.: Efficient Processing of Nested Fuzzy SQL Queries in a Fuzzy Database. IEEE
Transactions on Knowledge and Data Engineering 13(6) (November/December 2001)
4) Abbaci, K., Lemos, F., Hadjali, A., Grigori, D., Liétard, L., Rocacher, D., Bouzeghoub, M.:
Selecting and Ranking Business Processes with Preferences: An Approach Based on
Fuzzy Sets. In: Meersman, R., Dillon, T., Herrero, P., Kumar, A., Reichert, M., Qing, L.,
Ooi, B.-C., Damiani, E., Schmidt, D.C., White, J., Hauswirth, M., Hitzler, P., Mohania, M.,
et al. (eds.) OTM 2011, Part I. LNCS, vol. 7044, pp. 38–55. Springer, Heidelberg (2011)
5) Singh, K., et al.: Study of Imperfect Information Representation and FSQL processing.
In- ternational Journal of Scientific & Engineering Research 3(5) (May 2012)
6) Garg, A., Rishi, R.: Querying Capability Enhancement in Database Using Fuzzy Logic.
Global Journal of Computer Science and Technology 12(6) (Version 1.0 March 2012)
7) Wahidin, I.: Fuzzy Control (2007)
References:
6:35:14 PM
Flexible Querying of Relational Databases: Fuzzy Set Based Approach
References
8) Gadallah, A., Hefny, H.: An Efficient Database Query Processing Tool Based on Fuzzy
Logic. In: The 37th Annual Conference on Statistics and Computer Science (2002)
9) Shawky, A., et al.: FRDBM: A Tool For Building Fuzzy Relational Databases. The Egyp- tian
Computer Journal (2006)
10) Galindo, J., et al.: Handbook of Research on Fuzzy Information Processing in Databases.
Chapter XI FSQL and SQLf: Towards a Standard in Fuzzy Databases (2008)
11) Bosc, P., Pivert, O.: SQLf Query Functionality on Top of a Regular Relational Database
Man- agement. In: Pons, O., Vila, M.A., Kacprzyk, J. (eds.) Proceedings of Knowledge
Manage- ment in Fuzzy Databases. STUDFUZZ, vol. 39, pp. 171–190. Springer, Heidelberg
(2000)
12) Moore, S.: Oracle Database PL/SQL Language Reference, 12c, p. 1 (2014)
13) Elmasri, R., Navathe, S.B.: Fundamental of Database Systems (2014)
References:
6:35:14 PM

More Related Content

What's hot

A SURVEY ON QUESTION AND ANSWER SYSTEM BY RETRIEVING THE DESCRIPTIONS USING L...
A SURVEY ON QUESTION AND ANSWER SYSTEM BY RETRIEVING THE DESCRIPTIONS USING L...A SURVEY ON QUESTION AND ANSWER SYSTEM BY RETRIEVING THE DESCRIPTIONS USING L...
A SURVEY ON QUESTION AND ANSWER SYSTEM BY RETRIEVING THE DESCRIPTIONS USING L...IJARBEST JOURNAL
 
Generation of Question and Answer from Unstructured Document using Gaussian M...
Generation of Question and Answer from Unstructured Document using Gaussian M...Generation of Question and Answer from Unstructured Document using Gaussian M...
Generation of Question and Answer from Unstructured Document using Gaussian M...IJACEE IJACEE
 
Lexical Analysis to Effectively Detect User's Opinion
Lexical Analysis to Effectively Detect User's Opinion   Lexical Analysis to Effectively Detect User's Opinion
Lexical Analysis to Effectively Detect User's Opinion dannyijwest
 
Semi-Supervised Keyphrase Extraction on Scientific Article using Fact-based S...
Semi-Supervised Keyphrase Extraction on Scientific Article using Fact-based S...Semi-Supervised Keyphrase Extraction on Scientific Article using Fact-based S...
Semi-Supervised Keyphrase Extraction on Scientific Article using Fact-based S...TELKOMNIKA JOURNAL
 
Source side pre-ordering using recurrent neural networks for English-Myanmar ...
Source side pre-ordering using recurrent neural networks for English-Myanmar ...Source side pre-ordering using recurrent neural networks for English-Myanmar ...
Source side pre-ordering using recurrent neural networks for English-Myanmar ...IJECEIAES
 
Convolutional recurrent neural network with template based representation for...
Convolutional recurrent neural network with template based representation for...Convolutional recurrent neural network with template based representation for...
Convolutional recurrent neural network with template based representation for...IJECEIAES
 
A Novel Approach for Keyword extraction in learning objects using text mining
A Novel Approach for Keyword extraction in learning objects using text miningA Novel Approach for Keyword extraction in learning objects using text mining
A Novel Approach for Keyword extraction in learning objects using text miningIJSRD
 
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine
Leveraging Lucene/Solr as a Knowledge Graph and Intent EngineLeveraging Lucene/Solr as a Knowledge Graph and Intent Engine
Leveraging Lucene/Solr as a Knowledge Graph and Intent EngineTrey Grainger
 
Keyword extraction and clustering for document recommendation in conversations.
Keyword extraction and clustering for document recommendation in conversations.Keyword extraction and clustering for document recommendation in conversations.
Keyword extraction and clustering for document recommendation in conversations.LeMeniz Infotech
 
Ijarcet vol-3-issue-1-9-11
Ijarcet vol-3-issue-1-9-11Ijarcet vol-3-issue-1-9-11
Ijarcet vol-3-issue-1-9-11Dhabal Sethi
 
Haystack 2018 - Algorithmic Extraction of Keywords Concepts and Vocabularies
Haystack 2018 - Algorithmic Extraction of Keywords Concepts and VocabulariesHaystack 2018 - Algorithmic Extraction of Keywords Concepts and Vocabularies
Haystack 2018 - Algorithmic Extraction of Keywords Concepts and VocabulariesMax Irwin
 
The Impact of Data Caching of on Query Execution for Linked Data
The Impact of Data Caching of on Query Execution for Linked DataThe Impact of Data Caching of on Query Execution for Linked Data
The Impact of Data Caching of on Query Execution for Linked DataOlaf Hartig
 
DOMAIN BASED CHUNKING
DOMAIN BASED CHUNKINGDOMAIN BASED CHUNKING
DOMAIN BASED CHUNKINGkevig
 
QUESTION ANSWERING SYSTEM USING ONTOLOGY IN MARATHI LANGUAGE
QUESTION ANSWERING SYSTEM USING ONTOLOGY IN MARATHI LANGUAGEQUESTION ANSWERING SYSTEM USING ONTOLOGY IN MARATHI LANGUAGE
QUESTION ANSWERING SYSTEM USING ONTOLOGY IN MARATHI LANGUAGEijaia
 
An Improved Similarity Matching based Clustering Framework for Short and Sent...
An Improved Similarity Matching based Clustering Framework for Short and Sent...An Improved Similarity Matching based Clustering Framework for Short and Sent...
An Improved Similarity Matching based Clustering Framework for Short and Sent...IJECEIAES
 
Best Keyword Cover Search
Best Keyword Cover SearchBest Keyword Cover Search
Best Keyword Cover Search1crore projects
 

What's hot (20)

NLP based search engine
NLP based search engineNLP based search engine
NLP based search engine
 
A SURVEY ON QUESTION AND ANSWER SYSTEM BY RETRIEVING THE DESCRIPTIONS USING L...
A SURVEY ON QUESTION AND ANSWER SYSTEM BY RETRIEVING THE DESCRIPTIONS USING L...A SURVEY ON QUESTION AND ANSWER SYSTEM BY RETRIEVING THE DESCRIPTIONS USING L...
A SURVEY ON QUESTION AND ANSWER SYSTEM BY RETRIEVING THE DESCRIPTIONS USING L...
 
Generation of Question and Answer from Unstructured Document using Gaussian M...
Generation of Question and Answer from Unstructured Document using Gaussian M...Generation of Question and Answer from Unstructured Document using Gaussian M...
Generation of Question and Answer from Unstructured Document using Gaussian M...
 
Lexical Analysis to Effectively Detect User's Opinion
Lexical Analysis to Effectively Detect User's Opinion   Lexical Analysis to Effectively Detect User's Opinion
Lexical Analysis to Effectively Detect User's Opinion
 
Semi-Supervised Keyphrase Extraction on Scientific Article using Fact-based S...
Semi-Supervised Keyphrase Extraction on Scientific Article using Fact-based S...Semi-Supervised Keyphrase Extraction on Scientific Article using Fact-based S...
Semi-Supervised Keyphrase Extraction on Scientific Article using Fact-based S...
 
Source side pre-ordering using recurrent neural networks for English-Myanmar ...
Source side pre-ordering using recurrent neural networks for English-Myanmar ...Source side pre-ordering using recurrent neural networks for English-Myanmar ...
Source side pre-ordering using recurrent neural networks for English-Myanmar ...
 
Convolutional recurrent neural network with template based representation for...
Convolutional recurrent neural network with template based representation for...Convolutional recurrent neural network with template based representation for...
Convolutional recurrent neural network with template based representation for...
 
A Novel Approach for Keyword extraction in learning objects using text mining
A Novel Approach for Keyword extraction in learning objects using text miningA Novel Approach for Keyword extraction in learning objects using text mining
A Novel Approach for Keyword extraction in learning objects using text mining
 
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine
Leveraging Lucene/Solr as a Knowledge Graph and Intent EngineLeveraging Lucene/Solr as a Knowledge Graph and Intent Engine
Leveraging Lucene/Solr as a Knowledge Graph and Intent Engine
 
Keyword extraction and clustering for document recommendation in conversations.
Keyword extraction and clustering for document recommendation in conversations.Keyword extraction and clustering for document recommendation in conversations.
Keyword extraction and clustering for document recommendation in conversations.
 
Wsd final paper
Wsd final paperWsd final paper
Wsd final paper
 
Ijarcet vol-3-issue-1-9-11
Ijarcet vol-3-issue-1-9-11Ijarcet vol-3-issue-1-9-11
Ijarcet vol-3-issue-1-9-11
 
Haystack 2018 - Algorithmic Extraction of Keywords Concepts and Vocabularies
Haystack 2018 - Algorithmic Extraction of Keywords Concepts and VocabulariesHaystack 2018 - Algorithmic Extraction of Keywords Concepts and Vocabularies
Haystack 2018 - Algorithmic Extraction of Keywords Concepts and Vocabularies
 
Haystacks slides
Haystacks slidesHaystacks slides
Haystacks slides
 
The Impact of Data Caching of on Query Execution for Linked Data
The Impact of Data Caching of on Query Execution for Linked DataThe Impact of Data Caching of on Query Execution for Linked Data
The Impact of Data Caching of on Query Execution for Linked Data
 
DOMAIN BASED CHUNKING
DOMAIN BASED CHUNKINGDOMAIN BASED CHUNKING
DOMAIN BASED CHUNKING
 
QUESTION ANSWERING SYSTEM USING ONTOLOGY IN MARATHI LANGUAGE
QUESTION ANSWERING SYSTEM USING ONTOLOGY IN MARATHI LANGUAGEQUESTION ANSWERING SYSTEM USING ONTOLOGY IN MARATHI LANGUAGE
QUESTION ANSWERING SYSTEM USING ONTOLOGY IN MARATHI LANGUAGE
 
An Improved Similarity Matching based Clustering Framework for Short and Sent...
An Improved Similarity Matching based Clustering Framework for Short and Sent...An Improved Similarity Matching based Clustering Framework for Short and Sent...
An Improved Similarity Matching based Clustering Framework for Short and Sent...
 
PDFTextProcessing
PDFTextProcessingPDFTextProcessing
PDFTextProcessing
 
Best Keyword Cover Search
Best Keyword Cover SearchBest Keyword Cover Search
Best Keyword Cover Search
 

Viewers also liked

Lung capacity, tidal volume and mechanics of breathing
Lung capacity, tidal volume and mechanics of breathingLung capacity, tidal volume and mechanics of breathing
Lung capacity, tidal volume and mechanics of breathingmohamed alsawaf
 
Metric conversion factors for fan application per amca standard
Metric conversion factors for fan application per amca standardMetric conversion factors for fan application per amca standard
Metric conversion factors for fan application per amca standardCesar Enoch
 
Listening to neighbors’ stories
Listening to neighbors’ storiesListening to neighbors’ stories
Listening to neighbors’ storiesMaria Kleidara
 
Дизайн-долг в продуктовой и заказной разработке
Дизайн-долг в продуктовой и заказной разработкеДизайн-долг в продуктовой и заказной разработке
Дизайн-долг в продуктовой и заказной разработкеAndrew Shapiro
 
Skin Lesion Detection from Dermoscopic Images using Convolutional Neural Netw...
Skin Lesion Detection from Dermoscopic Images using Convolutional Neural Netw...Skin Lesion Detection from Dermoscopic Images using Convolutional Neural Netw...
Skin Lesion Detection from Dermoscopic Images using Convolutional Neural Netw...Universitat Politècnica de Catalunya
 
3Com 3C905B-FX(SC)-25PK
3Com 3C905B-FX(SC)-25PK3Com 3C905B-FX(SC)-25PK
3Com 3C905B-FX(SC)-25PKsavomir
 
Cryptography and applications
Cryptography and applicationsCryptography and applications
Cryptography and applicationsthai
 
Distribution of public keys and hmac
Distribution of public keys and hmacDistribution of public keys and hmac
Distribution of public keys and hmacanuragjagetiya
 
Ch14-Software Engineering 9
Ch14-Software Engineering 9Ch14-Software Engineering 9
Ch14-Software Engineering 9Ian Sommerville
 
Aspect Level Sentiment Analysis for Arabic Language
Aspect Level Sentiment Analysis for Arabic LanguageAspect Level Sentiment Analysis for Arabic Language
Aspect Level Sentiment Analysis for Arabic LanguageMido Razaz
 
Digital signature
Digital  signatureDigital  signature
Digital signatureAJAL A J
 
Lecture 9 key distribution and user authentication
Lecture 9 key distribution and user authentication Lecture 9 key distribution and user authentication
Lecture 9 key distribution and user authentication rajakhurram
 

Viewers also liked (20)

Presentación
PresentaciónPresentación
Presentación
 
Lung capacity, tidal volume and mechanics of breathing
Lung capacity, tidal volume and mechanics of breathingLung capacity, tidal volume and mechanics of breathing
Lung capacity, tidal volume and mechanics of breathing
 
POO
POOPOO
POO
 
Metric conversion factors for fan application per amca standard
Metric conversion factors for fan application per amca standardMetric conversion factors for fan application per amca standard
Metric conversion factors for fan application per amca standard
 
Listening to neighbors’ stories
Listening to neighbors’ storiesListening to neighbors’ stories
Listening to neighbors’ stories
 
good researcher lecture
good researcher lecture good researcher lecture
good researcher lecture
 
Дизайн-долг в продуктовой и заказной разработке
Дизайн-долг в продуктовой и заказной разработкеДизайн-долг в продуктовой и заказной разработке
Дизайн-долг в продуктовой и заказной разработке
 
Skin Lesion Detection from Dermoscopic Images using Convolutional Neural Netw...
Skin Lesion Detection from Dermoscopic Images using Convolutional Neural Netw...Skin Lesion Detection from Dermoscopic Images using Convolutional Neural Netw...
Skin Lesion Detection from Dermoscopic Images using Convolutional Neural Netw...
 
3Com 3C905B-FX(SC)-25PK
3Com 3C905B-FX(SC)-25PK3Com 3C905B-FX(SC)-25PK
3Com 3C905B-FX(SC)-25PK
 
Digital signature
Digital signatureDigital signature
Digital signature
 
Fuzzy Set | Statistics
Fuzzy Set | StatisticsFuzzy Set | Statistics
Fuzzy Set | Statistics
 
Cryptography and applications
Cryptography and applicationsCryptography and applications
Cryptography and applications
 
Distribution of public keys and hmac
Distribution of public keys and hmacDistribution of public keys and hmac
Distribution of public keys and hmac
 
Chap3 RE elicitation
Chap3 RE elicitationChap3 RE elicitation
Chap3 RE elicitation
 
Ch14-Software Engineering 9
Ch14-Software Engineering 9Ch14-Software Engineering 9
Ch14-Software Engineering 9
 
Aspect Level Sentiment Analysis for Arabic Language
Aspect Level Sentiment Analysis for Arabic LanguageAspect Level Sentiment Analysis for Arabic Language
Aspect Level Sentiment Analysis for Arabic Language
 
Fuzzy Set
Fuzzy SetFuzzy Set
Fuzzy Set
 
Digital signature
Digital  signatureDigital  signature
Digital signature
 
Lecture 9 key distribution and user authentication
Lecture 9 key distribution and user authentication Lecture 9 key distribution and user authentication
Lecture 9 key distribution and user authentication
 
Protocols for Public Key Management
Protocols for Public Key ManagementProtocols for Public Key Management
Protocols for Public Key Management
 

Similar to Flexible querying of relational databases fuzzy set based approach 27-11

Seaform Slides in VLDB 2010 PhD Workshop
Seaform Slides in VLDB 2010 PhD WorkshopSeaform Slides in VLDB 2010 PhD Workshop
Seaform Slides in VLDB 2010 PhD WorkshopHao Wu
 
Coverage-Criteria-for-Testing-SQL-Queries
Coverage-Criteria-for-Testing-SQL-QueriesCoverage-Criteria-for-Testing-SQL-Queries
Coverage-Criteria-for-Testing-SQL-QueriesMohamed Reda
 
27 ijcse-01238-5 sivaranjani
27 ijcse-01238-5 sivaranjani27 ijcse-01238-5 sivaranjani
27 ijcse-01238-5 sivaranjaniShivlal Mewada
 
Context-Based Diversification for Keyword Queries over XML Data
Context-Based Diversification for Keyword Queries over XML DataContext-Based Diversification for Keyword Queries over XML Data
Context-Based Diversification for Keyword Queries over XML Data1crore projects
 
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES cscpconf
 
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIESENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIEScsandit
 
Enhancing keyword search over relational databases using ontologies
Enhancing keyword search over relational databases using ontologiesEnhancing keyword search over relational databases using ontologies
Enhancing keyword search over relational databases using ontologiescsandit
 
The Statement of Conjunctive and Disjunctive Queries in Object Oriented Datab...
The Statement of Conjunctive and Disjunctive Queries in Object Oriented Datab...The Statement of Conjunctive and Disjunctive Queries in Object Oriented Datab...
The Statement of Conjunctive and Disjunctive Queries in Object Oriented Datab...Editor IJCATR
 
Pattern based approach for Natural Language Interface to Database
Pattern based approach for Natural Language Interface to DatabasePattern based approach for Natural Language Interface to Database
Pattern based approach for Natural Language Interface to DatabaseIJERA Editor
 
INTELLIGENT-MULTIDIMENSIONAL-DATABASE-INTERFACE
INTELLIGENT-MULTIDIMENSIONAL-DATABASE-INTERFACEINTELLIGENT-MULTIDIMENSIONAL-DATABASE-INTERFACE
INTELLIGENT-MULTIDIMENSIONAL-DATABASE-INTERFACEMohamed Reda
 
Efficient instant fuzzy search with proximity ranking
Efficient instant fuzzy search with proximity rankingEfficient instant fuzzy search with proximity ranking
Efficient instant fuzzy search with proximity rankingShakas Technologies
 
Full-Text Retrieval in Unstructured P2P Networks using Bloom Cast Efficiently
Full-Text Retrieval in Unstructured P2P Networks using Bloom Cast EfficientlyFull-Text Retrieval in Unstructured P2P Networks using Bloom Cast Efficiently
Full-Text Retrieval in Unstructured P2P Networks using Bloom Cast Efficientlyijsrd.com
 
Resource Description Framework Approach to Data Publication and Federation
Resource Description Framework Approach to Data Publication and FederationResource Description Framework Approach to Data Publication and Federation
Resource Description Framework Approach to Data Publication and FederationPistoia Alliance
 
Question Retrieval in Community Question Answering via NON-Negative Matrix Fa...
Question Retrieval in Community Question Answering via NON-Negative Matrix Fa...Question Retrieval in Community Question Answering via NON-Negative Matrix Fa...
Question Retrieval in Community Question Answering via NON-Negative Matrix Fa...IRJET Journal
 
Explanations in Dialogue Systems through Uncertain RDF Knowledge Bases
Explanations in Dialogue Systems through Uncertain RDF Knowledge BasesExplanations in Dialogue Systems through Uncertain RDF Knowledge Bases
Explanations in Dialogue Systems through Uncertain RDF Knowledge BasesDaniel Sonntag
 
Keyword Query Routing
Keyword Query RoutingKeyword Query Routing
Keyword Query RoutingSWAMI06
 

Similar to Flexible querying of relational databases fuzzy set based approach 27-11 (20)

Seaform Slides in VLDB 2010 PhD Workshop
Seaform Slides in VLDB 2010 PhD WorkshopSeaform Slides in VLDB 2010 PhD Workshop
Seaform Slides in VLDB 2010 PhD Workshop
 
[IJET-V2I3P19] Authors: Priyanka Sharma
[IJET-V2I3P19] Authors: Priyanka Sharma[IJET-V2I3P19] Authors: Priyanka Sharma
[IJET-V2I3P19] Authors: Priyanka Sharma
 
Coverage-Criteria-for-Testing-SQL-Queries
Coverage-Criteria-for-Testing-SQL-QueriesCoverage-Criteria-for-Testing-SQL-Queries
Coverage-Criteria-for-Testing-SQL-Queries
 
27 ijcse-01238-5 sivaranjani
27 ijcse-01238-5 sivaranjani27 ijcse-01238-5 sivaranjani
27 ijcse-01238-5 sivaranjani
 
Context-Based Diversification for Keyword Queries over XML Data
Context-Based Diversification for Keyword Queries over XML DataContext-Based Diversification for Keyword Queries over XML Data
Context-Based Diversification for Keyword Queries over XML Data
 
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES
 
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIESENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES
ENHANCING KEYWORD SEARCH OVER RELATIONAL DATABASES USING ONTOLOGIES
 
Enhancing keyword search over relational databases using ontologies
Enhancing keyword search over relational databases using ontologiesEnhancing keyword search over relational databases using ontologies
Enhancing keyword search over relational databases using ontologies
 
The Statement of Conjunctive and Disjunctive Queries in Object Oriented Datab...
The Statement of Conjunctive and Disjunctive Queries in Object Oriented Datab...The Statement of Conjunctive and Disjunctive Queries in Object Oriented Datab...
The Statement of Conjunctive and Disjunctive Queries in Object Oriented Datab...
 
Pattern based approach for Natural Language Interface to Database
Pattern based approach for Natural Language Interface to DatabasePattern based approach for Natural Language Interface to Database
Pattern based approach for Natural Language Interface to Database
 
INTELLIGENT-MULTIDIMENSIONAL-DATABASE-INTERFACE
INTELLIGENT-MULTIDIMENSIONAL-DATABASE-INTERFACEINTELLIGENT-MULTIDIMENSIONAL-DATABASE-INTERFACE
INTELLIGENT-MULTIDIMENSIONAL-DATABASE-INTERFACE
 
Efficient instant fuzzy search with proximity ranking
Efficient instant fuzzy search with proximity rankingEfficient instant fuzzy search with proximity ranking
Efficient instant fuzzy search with proximity ranking
 
1861 1865
1861 18651861 1865
1861 1865
 
1861 1865
1861 18651861 1865
1861 1865
 
Full-Text Retrieval in Unstructured P2P Networks using Bloom Cast Efficiently
Full-Text Retrieval in Unstructured P2P Networks using Bloom Cast EfficientlyFull-Text Retrieval in Unstructured P2P Networks using Bloom Cast Efficiently
Full-Text Retrieval in Unstructured P2P Networks using Bloom Cast Efficiently
 
Resource Description Framework Approach to Data Publication and Federation
Resource Description Framework Approach to Data Publication and FederationResource Description Framework Approach to Data Publication and Federation
Resource Description Framework Approach to Data Publication and Federation
 
Question Retrieval in Community Question Answering via NON-Negative Matrix Fa...
Question Retrieval in Community Question Answering via NON-Negative Matrix Fa...Question Retrieval in Community Question Answering via NON-Negative Matrix Fa...
Question Retrieval in Community Question Answering via NON-Negative Matrix Fa...
 
Explanations in Dialogue Systems through Uncertain RDF Knowledge Bases
Explanations in Dialogue Systems through Uncertain RDF Knowledge BasesExplanations in Dialogue Systems through Uncertain RDF Knowledge Bases
Explanations in Dialogue Systems through Uncertain RDF Knowledge Bases
 
Keyword Query Routing
Keyword Query RoutingKeyword Query Routing
Keyword Query Routing
 
B017350710
B017350710B017350710
B017350710
 

Recently uploaded

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraDeakin University
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxnull - The Open Security Community
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 

Recently uploaded (20)

Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Artificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning eraArtificial intelligence in the post-deep learning era
Artificial intelligence in the post-deep learning era
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptxMaking_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
Making_way_through_DLL_hollowing_inspite_of_CFG_by_Debjeet Banerjee.pptx
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 

Flexible querying of relational databases fuzzy set based approach 27-11

  • 1. Flexible Querying of Relational Databases: Fuzzy Set Based Approach By Adel A. Sabour, Ahmed M. Gadallah, and Hesham A. Hefny Flexible Querying of Relational Databases: Fuzzy Set BasedApproach Advanced Machine Learning Technologies and Applications Communications in Computer and Information Science Volume 488, 2014, pp 446-455 6:35:14 PM
  • 2. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Agenda Presentation Outline: 1)Introduction 2)Crisp SQL vs. Fuzzy SQL 3)Motivation 4)Research Problem 5)The Objective 6)Previous work 7)The Proposed Fuzzy Query Approach 8)Fuzzy Queries (FQ) Tool 9)Results 10)Summary 6:35:14 PM
  • 3. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Introduction Structured Query Language (SQL) is a very essential language for querying relational databases. It manipulates and retrieves data which is crisp and precise by nature. In contrary, it is unable to respond to human-like queries which are uncertain, imprecise and vague in nature. Almost, human queries have a lot of vagueness and ambiguity due to using his/her subjective linguistic words. Introduction: 6:35:14 PM
  • 4. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Introduction For example, high salaries have different definitions that depend on each person searching for them. Consider the query “retrieve the names and addresses of the university students who have height around the ideal height for a handball player”. This query cannot be expressed and manipulated directly by a traditional SQL statement. Introduction: 6:35:14 PM
  • 5. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Introduction In contrary, it can be expressed and manipulated easily through a fuzzy query statement in a very flexible and human-like manner based on the ideas of fuzzy set theory. Human-like queries depend essentially on manipulation of linguistic values such as: short, tall, hot and calls human concepts. Introduction: 6:35:14 PM
  • 6. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Introduction standard SQL adopts classical Boolean expressions with crisp logical connectors which are too rigid and very limited in manipulation of linguistic values or linguistic modifiers such as: about, nearly, fairly, etc. which can be represented easily based on the concept of fuzzy set. Introduction: 6:35:14 PM
  • 7. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Crisp SQL vs. Fuzzy SQL Example: “Give me the names of the young age and high salary employees”. This query is modelled in SQL language as follows: SELECT Emp_name, Emp_age, Emp_salary FROM Employee WHERE (Emp_age between 22 and 30) and (Emp_salary>8) Basic Concepts of fuzzy set theory 6:35:14 PM
  • 8. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Crisp SQL vs. Fuzzy SQL The attribute age, presented in next figure, has the linguistic labels Young, Adult and Old, defined on the trapezoidal possibility distributions as following: YOUNG (18, 22, 30, 35) ADULT (25, 32, 45, 50) OLD (50, 55, 62, 70) An approximate value has a margin of 5. Basic Concepts of fuzzy set theory Figure. fuzzy membership function for AGE attribute.6:35:14 PM
  • 9. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Crisp SQL vs. Fuzzy SQL The attribute SALARY, presented in next fig., has the linguistic labels Low, Medium and High, defined on the trapezoidal possibility distributions as following: LOW (1, 1.5, 2.5, 4) MEDIUM (3, 4.5, 6.5, 8) HIGH (6, 8, 10, 12) An approximate value has a margin of 1.5 L. Basic Concepts of fuzzy set theory Figure. fuzzy membership function for Salary attribute6:35:14 PM
  • 10. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Crisp SQL vs. Fuzzy SQL Query syntax after those Settings will be written as follows in our proposed system: SELECT Emp_name, Emp_age, Emp_salary FROM Employee WHERE Age.Young(Emp_age ) and Salary.High(Emp_salary) Basic Concepts of fuzzy set theory 6:35:14 PM
  • 11. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Motivation Most of previously proposed fuzzy query approaches have a disadvantage that they interpret any fuzzy query statement into a crisp query statement then evaluate the resulted tuples to compute their matching degrees to the fuzzy query. This proposed approach makes it easy to use fuzzy linguistic values in all clauses of a select statement, not “where” clause only. The added value of this proposed approach is to accelerate the execution of fuzzy query statements. Motivation 6:35:14 PM
  • 12. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Research Problem Most of previously developed fuzzy SQL architectures have set of drawbacks: 1) Have the inability for dealing with multi subjective views when interacting with multiusers. Instead, preferences are used to help in reducing the amount of information returned in response to user queries. 2) Lack of a standardized format in writing statements that is each tool has its own syntax. On the other hand, most of the proposed approaches depend mainly on using a time consuming parser/translator to check and convert fuzzy queries to crisp SQL queries. Research Problem 6:35:14 PM
  • 13. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Research Problem 3) Most of proposed approaches depend mainly on using a time consuming parser/translator to check and convert fuzzy queries to crisp SQL queries. 4) Some approaches process nested and correlated fuzzy queries inefficiently. Research Problem 6:35:14 PM
  • 14. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Research Problem 5) Most of approaches define a Meta base named Fuzzy Meta-knowledge Base (FMB) that includes a set of tables to store all necessary information to describe and manipulate fuzzy attributes and terms values. This slows down the process of querying because each generated fuzzy query must be analyzed and translated into a standard SQL statement respecting the definitions of all used fuzzy terms or operators stored in FMB. Research Problem 6:35:14 PM
  • 15. Flexible Querying of Relational Databases: Fuzzy Set Based Approach The Objective The Objective The main objective of the proposed fuzzy query approach is to overcome the above disadvantages by evaluating each tuple directly through the use of stored database objects namely packages, procedures and functions. Consequently, the response time of executing a fuzzy query statement will be reduced. 6:35:14 PM
  • 16. Human-Like Data-Sensitive fuzzy-Based Query Approach for Relational Databases Previous work Previous work FSQL proposed by Galindo [10] has been conceived with a mild coupling architecture as shown in figure. FSQL is integrated through stored procedures and functions. Figure 4. FSQL implementation architecture (FRDB) by Galindo [10]
  • 17. Human-Like Data-Sensitive fuzzy-Based Query Approach for Relational Databases Previous work Previous work FSQL proposed by Galindo [10] The drawbacks: 1. The proposed approach depend mainly on using a time consuming parser/translator to check and convert fuzzy queries to crisp SQL queries. 2. The approach define a Meta base named Fuzzy Meta-knowledge Base (FMB) that includes a set of tables to store all necessary information to describe and manipulate fuzzy attributes and terms. Such FMB must be accessed each time a fuzzy query statement is generated. This operation is essential in order to obtain the definitions of each used fuzzy term in order to complete the processing of the generated fuzzy query statement which is a time consuming. 3. No querying of relational databases using non-stationary or data sensitive fuzzy values.
  • 18. Human-Like Data-Sensitive fuzzy-Based Query Approach for Relational Databases Previous work Previous work Also, another approach for fuzzy query called SQLf is proposed by Bosc in [11]. As shown in its architecture in Figure. Figure 5. SQLf implementation architecture by Bosc & Pivert [11].
  • 19. Human-Like Data-Sensitive fuzzy-Based Query Approach for Relational Databases Previous work Previous work FSQL proposed architecture by Bosc & Pivert [11]. The drawbacks: 1. The proposed approach depend mainly on using a time consuming parser/translator to check and convert fuzzy queries to crisp SQL queries. 2. The approach define a Meta base named Fuzzy Meta-knowledge Base (FMB) 3. No querying of relational databases using non-stationary or data sensitive fuzzy values. 4. The lack of a standardized format in writing statements , each tool has its own syntax.
  • 20. Flexible Querying of Relational Databases: Fuzzy Set Based Approach The Proposed Fuzzy Query Approach The Proposed Fuzzy Query Approach 6:35:14 PM
  • 21. Flexible Querying of Relational Databases: Fuzzy Set Based Approach The Proposed Fuzzy Query Approach The Proposed Fuzzy Query Approach The proposed fuzzy query approach aims mainly to support human-like queries which almost contain linguistic terms and fuzzy connectors. Such linguistic terms include linguistic variables, linguistic values, fuzzy hedges and fuzzy numbers. The proposed approach enhances the definition and manipulation of such linguistic terms. 6:35:14 PM
  • 22. Flexible Querying of Relational Databases: Fuzzy Set Based Approach The Proposed Fuzzy Query Approach The Proposed Fuzzy Query Approach Each defined linguistic term will be stored as a database object namely stored function within a related stored package. In consequence, a user can use any of his defined linguistic terms in any clause in a select statement as using a user defined stored function. Accordingly, the defined linguistic terms can be used easily in even nested, complex and correlated query statements without the need for complex procedures to execute the query statement. 6:35:14 PM
  • 23. Flexible Querying of Relational Databases: Fuzzy Set Based Approach A Fuzzy Query Tool based on the proposed approach A Fuzzy Queries Tool Register/Login to FQ At the first time the user aims to interact with the tool, he/she must create an account with a user name and a password. After that, the user can define his/her own linguistic terms via the tool GUI. Consequently, each created stored database object within the user session becomes part of the user fuzzy profile. Also, the user can generate a fuzzy query statement using his/her predefined linguistic terms and execute it. 6:35:14 PM
  • 24. Flexible Querying of Relational Databases: Fuzzy Set Based Approach A Fuzzy Query Tool based on the proposed approach A Fuzzy Queries Tool Linguistic Variables Service This service allows creating, modifying or deleting a linguistic variable/labels that has a set of linguistic values that will be defined over it. The user enters just the name of the linguistic variable. For example, a linguistic variable may be a computer grades, temperature degree, height or salary as shown in next figure. 6:35:14 PM
  • 25. Flexible Querying of Relational Databases: Fuzzy Set Based Approach A Fuzzy Query Tool based on the proposed approach A Fuzzy Queries Tool Linguistic Values Services This service is responsible for defining a set of linguistic values over a specific linguistic variable. Through a graphical user-friendly representation, the user can check the linguistic values definitions and its overlapping for a specific linguistic variable. The graphical representation will help the user to make the effective modifications in the selected membership function to satisfy the meaning of the linguistic value. 6:35:14 PM
  • 26. Flexible Querying of Relational Databases: Fuzzy Set Based Approach A Fuzzy Query Tool based on the proposed approach A Fuzzy Queries Tool Linguistic Values Services The user can draw these values (Control Points) only, or add to the values set by or delete the previous drawing. Then add these values to the Linguistic Value to add other Linguistic Value for the same Linguistic Variable. And so on, until the user saves all the values6:35:14 PM
  • 27. Flexible Querying of Relational Databases: Fuzzy Set Based Approach A Fuzzy Query Tool based on the proposed approach A Fuzzy Queries Tool Fuzzy SQL Query Service This service enables the user to generate fuzzy query statements using the syntax of traditional SQL language. After the execution of the generated fuzzy query statement, the result it displayed as shown in next Fig. The next query statement is generated to obtain each employee first name, salary and a matching degree specifying how much such salary is high 6:35:14 PM
  • 28. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Fuzzy SQL Query Service A Fuzzy Queries Tool 6:35:14 PM
  • 29. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Results Results Using a fuzzy expression in where clause Passing a fuzzy expression as an argument to a function 6:35:14 PM
  • 30. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Results Results complex queries including joining of two or more tables are supported. The resulted tuples can be sorted using their matching degree to the specified fuzzy criteria in the generated fuzzy query statement. This query statement aims to retrieve each student Id, student name, physics grade and a matching degree specifies how much such student if failed in physics 6:35:14 PM
  • 31. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Results Results Creating a database view based of fuzzy expressions An example of a correlated Fuzzy query statement 6:35:14 PM
  • 32. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Results Results In order to enhance the previous query statement to show each employee name, salary, the average salary of his/her department and a matching degree representing how much the employee salary is closed to such average, the fuzzy query statement shown in next fig. is used. The result of such a query statement shows that the more closed salary to the average, the higher the matching degree 6:35:14 PM
  • 33. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Summary Summary the proposed approach depends mainly on storing all used fuzzy terms as database objects in an organized fashion. Such stored database objects resembles the user fuzzy profile. the fuzzy query syntax is identical to the standard SQL language due to the use of stored database objects for representing the fuzzy terms. In other words, any generated fuzzy query statement agrees with the standard SQL language. 6:35:14 PM
  • 34. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Summary Summary Consequently, a fuzzy query statement can be generated directly as a traditional SQL statement using the fuzzy terms predefined as database objects. In consequent, there is no need for an analyzer or a translator to covert a generated fuzzy query into an executable query statement. Also, there is no need for a Fuzzy Meta-Knowledgebase that existed in most of previously proposed approaches for fuzzy queries. Hence, not only the complexity of allowing a fuzzy query is reduced but also the response time of executing such query. 6:35:14 PM
  • 35. Flexible Querying of Relational Databases: Fuzzy Set Based Approach Summary Summary The proposed approach allows simple, complex, nested and correlated fuzzy query statements in a human-like fashion which almost contain linguistic terms and fuzzy connectors. Also, because linguistic terms are represented as a set of user defined stored functions; the proposed approach allows writing any simple, nested, correlated and complex fuzzy query statements as traditional select statements in a very flexible manner. 6:35:14 PM
  • 36. Flexible Querying of Relational Databases: Fuzzy Set Based Approach (Questions) Flexible Querying of Relational Databases : Fuzzy Set Based Approach Speaker: Adel Sabour Email: adelsabour@gmail.com Phone: 01120200131 Advanced Machine Learning Technologies and Applications Communications in Computer and Information Science Volume 488, 2014, pp 446-455 6:35:14 PM
  • 37. Flexible Querying of Relational Databases: Fuzzy Set Based Approach References 1) Mishra, J.: Fuzzy Query Processing. International Journal of Research and Reviews in Next Generation Networks 1(1) (March 2011) 2) Grissa, A., Ben Hassine, M.: New Architecture of Fuzzy Database Management Systems. The International Arab Journal of Information Technology 6(3) (July 2009) 3) Qi, Y., et al.: Efficient Processing of Nested Fuzzy SQL Queries in a Fuzzy Database. IEEE Transactions on Knowledge and Data Engineering 13(6) (November/December 2001) 4) Abbaci, K., Lemos, F., Hadjali, A., Grigori, D., Liétard, L., Rocacher, D., Bouzeghoub, M.: Selecting and Ranking Business Processes with Preferences: An Approach Based on Fuzzy Sets. In: Meersman, R., Dillon, T., Herrero, P., Kumar, A., Reichert, M., Qing, L., Ooi, B.-C., Damiani, E., Schmidt, D.C., White, J., Hauswirth, M., Hitzler, P., Mohania, M., et al. (eds.) OTM 2011, Part I. LNCS, vol. 7044, pp. 38–55. Springer, Heidelberg (2011) 5) Singh, K., et al.: Study of Imperfect Information Representation and FSQL processing. In- ternational Journal of Scientific & Engineering Research 3(5) (May 2012) 6) Garg, A., Rishi, R.: Querying Capability Enhancement in Database Using Fuzzy Logic. Global Journal of Computer Science and Technology 12(6) (Version 1.0 March 2012) 7) Wahidin, I.: Fuzzy Control (2007) References: 6:35:14 PM
  • 38. Flexible Querying of Relational Databases: Fuzzy Set Based Approach References 8) Gadallah, A., Hefny, H.: An Efficient Database Query Processing Tool Based on Fuzzy Logic. In: The 37th Annual Conference on Statistics and Computer Science (2002) 9) Shawky, A., et al.: FRDBM: A Tool For Building Fuzzy Relational Databases. The Egyp- tian Computer Journal (2006) 10) Galindo, J., et al.: Handbook of Research on Fuzzy Information Processing in Databases. Chapter XI FSQL and SQLf: Towards a Standard in Fuzzy Databases (2008) 11) Bosc, P., Pivert, O.: SQLf Query Functionality on Top of a Regular Relational Database Man- agement. In: Pons, O., Vila, M.A., Kacprzyk, J. (eds.) Proceedings of Knowledge Manage- ment in Fuzzy Databases. STUDFUZZ, vol. 39, pp. 171–190. Springer, Heidelberg (2000) 12) Moore, S.: Oracle Database PL/SQL Language Reference, 12c, p. 1 (2014) 13) Elmasri, R., Navathe, S.B.: Fundamental of Database Systems (2014) References: 6:35:14 PM