SlideShare a Scribd company logo
1 of 8
Download to read offline
http://www.iaeme.com/IJARET/index.asp 1 editor@iaeme.com
International Journal of Advanced Research in Engineering and Technology
(IJARET)
Volume 6, Issue 9, Sep 2015, pp. 01-08, Article ID: IJARET_06_09_001
Available online at
http://www.iaeme.com/IJARET/issues.asp?JTypeIJARET&VType=6&IType=9
ISSN Print: 0976-6480 and ISSN Online: 0976-6499
© IAEME Publication
___________________________________________________________________________
DATABASES EXCHANGE USING WEB
SERVICE MODEL
Prof. Rajan Datt
Assistant Professor, Nirma University
Dr. N.N. Jani
Director, MCA, Kadi Sarva Vishawavidyalaya
Mr. Sagar Modhavadia
Student, MCA, Nirma University
Mr. Parth Kadecha
Student, MCA, Nirma University
ABSTRACT
Today in the world with development of computer and network
technologies, industry is using IT infrastructure for storing the data and
transfering the data from the one database type to another database types. So
when the data is going to store in database its formate and storing methods
are different, due to this various format user is not able to integrate the
heterogeneous databases with each orthers. So as solution we have developed
web service as model which can used to exchange the data between the
various databases.In this term paper we have discussed web service model
which can be used to exchange data from one type to another and have
implemented as well as developed interface in which an application we input
SQL server database file and we get output as MY SQL database file and Vice
Versa.
Key words: Web Service, SOAP, XML
Cite this Article: Prof. Rajan Datt, Dr. N.N. Jani, Mr. Sagar Modhavadia and
Mr. Parth Kadecha, Simulation, Databases Exchange Using Web Service
Model. International Journal of Advanced Research in Engineering and
Technology, 6(9), 2015, pp. 01-08.
http://www.iaeme.com/IJARET/issues.asp?JType=IJARET&VType=6&IType=9
Prof. Rajan Datt, Dr. N.N. Jani, Mr. Sagar Modhavadia and Mr. Parth Kadecha
http://www.iaeme.com/IJARET/index.asp 2 editor@iaeme.com
1. INTRODUCTION
In today’s world every organization have to store their data in their own information
system. Information system used by organization are different and also their database
are different with development of system and the infrastructure. Different offices of
the government are established in different years with various infrastructure then its
database may be different from time to time, but it is the requirement of the
government to share their data between the various departments of the government for
taking important decisions. In this scenario it is need of the government to share or
integrate the databases of the various departments.
It is found that now days many organization is using service oriented architecture
with web service for the interoperability of the databases [1].
Here we are going to proposed model which will exchange the database of one
type in to another type using web service with the Service Oriented Architecture.
Web services are web application components which can be build, found and used
on the web. And it is a method of communication between two machine to machine
over a network. Such as we have developed an interface in which SQL database file is
given as argument in the function and as a output we get MY SQL database file with
same fields, same data type of those fields and constraints. Thus, on one server there
is SQL Server installed and on another server there is MY SQL installed and on third
server, the web service is running which translates SQL Server database file to MY
SQL database file. The technologies in which web services are written is WSDL.
WSDL (Web Service Descriptive Language) is an XML based language for
describing web services. UDDI (Universal Description, Discovery and Integration) is
a directory. It would then contact a special protocol called SOAP (Simple Object
Access Protocol) with Service Oriented Architecture (SOA).
2. RELATED WORK
Authors[3] have explained the problem of large scale data integration because of
design time user don’t know the structure of data , also traditional approach fail to
meet the data integration problem.
In this paper [4] authors have outlined the general problem of data exchange when
the data are stored on heterogeneous system. So they have proposed service oriented
architecture for data exchanging between application using heterogeneous databases.
The purposed framework proved to be an efficient solution for sharing and accessing
to heterogeneous data.
Structuring the scenario of smart meter data interface by comparing web service
technologies for smart meter data exchange. So in order to transfer data they used
various web technologies by judging the some criteria. In[5] qualitative comparison of
web service technologies provide a guidance for the right architectural design of smart
meter data exchange interface depending on the context and target use case.
In this paper authors [6] have focused on the gap of heterogeneous system
communication. Authors have constructed a framework which can use to transfer data
on heterogeneous system using web services. Data exchange platform realize the main
background relational database system using we service architecture.
Solution in the form of architecture to exchange data between the eHealth
systems. Here [7], proposed architecture using SOA and web service to shared
medication record of different eHealth system.
Databases Exchange Using Web Service Model
http://www.iaeme.com/IJARET/index.asp 3 editor@iaeme.com
Presented [8] the problem of patient data exchange between the medical
institution, hospital and insurance company, but the data are not in some format. As
result authors have purposed framework for medical information integration based on
ontology and web service to exchange or share data between different databases.
Author have developed framework using web technologies which has complete
encapsulation, loosely coupled, cross-platform and scalable to integrate medical
information.
3. IMPLEMENTATION
In implementation web service model we have created web service using visual studio
c# with ASP.Net. as interface we have created one form which allows the users to
select the database as source from which you can take database structure and allow
you to convert the database in either SQL Server or MY SQL(Vice Versa)
Figure 1 specified that this form will allow the user to select the database from SQL Server
database and convert into MY SQL.
Figure 2 specified that this form will allow the user to select the database from MY SQL
database and convert into SQL Server.
protected void btnConvert_Click(object sender, EventArgs e)
{
String connection_string = txtConnectionString.Text.Trim();
String db_name = txtDBName.Text.Trim();
if (db_name == "" || connection_string == "")
{
lblResult.Text = "* Invalid Input";
Prof. Rajan Datt, Dr. N.N. Jani, Mr. Sagar Modhavadia and Mr. Parth Kadecha
http://www.iaeme.com/IJARET/index.asp 4 editor@iaeme.com
return;
}
DataTransferWebService.DataTransfer wsobj = new DataTransfer();
if(wsobj.DataTransferService(connection_string,db_name))
{
lblResult.Text = "Result : Database Converted
Successfully...";
}
else
{
lblResult.Text = "Result : Problem in Conversion..";
}
}
Code: To connect with the Database and display message
[WebMethod]
public Boolean DataTransferService(String ConnectionString,string DataBaseName)
{
SqlConnection con;
try
{
con = new SqlConnection(@"" + ConnectionString);
}
catch
{
return false;
}
if (checkValidConnection(con))
{
MySqlConnection mscon = new MySqlConnection("Data
Source=localhost;UId=root;PWD=root;");
MySqlCommand mscmd;
try
{
mscmd = new MySqlCommand("CREATE DATABASE " + DataBaseName,
mscon);
mscon.Open();
mscmd.ExecuteNonQuery();
mscon.Close();
Databases Exchange Using Web Service Model
http://www.iaeme.com/IJARET/index.asp 5 editor@iaeme.com
}
catch {
return false;
}
mscmd = new MySqlCommand("USE " + DataBaseName, mscon);
mscon.Open();
mscmd.ExecuteNonQuery();
mscon.Close();
con.Open();
SqlCommand cmdTables = new SqlCommand("SELECT table_name FROM
INFORMATION_SCHEMA.TABLES", con);
SqlDataAdapter da = new SqlDataAdapter(cmdTables);
DataTable dtTables = new DataTable("tbl_tables");
da.Fill(dtTables);
// All table structure
for (int i = 0; i < dtTables.Rows.Count; i++)
{
SqlCommand cmdTableData = new SqlCommand ("SELECT
column_name,data_type,is_nullable FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name='" + dtTables.Rows[i]["table_name"].ToString() + "'", con);
da = new SqlDataAdapter(cmdTableData);
DataTable dt = new DataTable(dtTables.Rows[i]["table_name"].ToString());
da.Fill(dt);
String cmdStr = "CREATE TABLE " + dtTables.Rows[i]["table_name"] + "( ";
for(int j=0;j<dt.Rows.Count;j++)
{
string is_null = "";
if(dt.Rows[j]["is_nullable"].ToString() == "NO")
{
is_null = "NOT NULL";
}
if(j==dt.Rows.Count-1)
{
Prof. Rajan Datt, Dr. N.N. Jani, Mr. Sagar Modhavadia and Mr. Parth Kadecha
http://www.iaeme.com/IJARET/index.asp 6 editor@iaeme.com
cmdStr += dt.Rows[j]["column_name"].ToString() + " "
+dt.Rows[j]["data_type"].ToString() + "(50) " + is_null ;
}
else
{
cmdStr += dt.Rows[j]["column_name"].ToString() + " " +
dt.Rows[j]["data_type"].ToString() + "(50) " + is_null + ", "; } }
Code: for data transfer and fetch schema and define all structure
Here we have create web service using SQL Server with visual studio. We have
created web service with web method which allows the user to convert database from
one format to another format.
We have developed web service with some methods which can help us to convert
the database, also we have used some of the object of ADO.NET and information
schema for getting the structure of the databases.
4. RESULTS
We have implemented this service with database which is have various number of
records and we found that it is running successfully without any loss of the data from
the databases.
Table 1 conversion table (MY SQL to SQL Server)
MY SQL Records Response Time Success Ratio
Database 1 1000 25 milliseconds 100%
Database 2 5000 40 milliseconds 99%
Database 3 10000 60 milliseconds 95%
Table 2 conversion table (SQL Server To MY SQL)
SQL Server Records Response Time Success Ratio
Database 1 1000 20 milliseconds 100%
Database 2 5000 44 milliseconds 97%
Database 3 10000 55 milliseconds 96%
We have implemented the web service model on different database with the
number of various records and we found that it is converted the database successfully.
We have also tried to implement it with minimum time with minimum response time.
5. CONCLUSION
This research purposes to use of web service as a potential middleware to fulfil the
need of data exchange. So we have developed a general web based service which
implement to exchange the database format from one type to another type.We need to
conduct further investigations on designing and implementing Quality of service
module that give confirmation of reliability, availability and achievement. But still
Databases Exchange Using Web Service Model
http://www.iaeme.com/IJARET/index.asp 7 editor@iaeme.com
some future work is required like database should be converted with full all the
constraint that are define when database is created
REFERENCES
[1] U. Srivastava, K. Munagala, J. Widom, and R. Motwani. Query optimization
over web services. In Proceedings of the 32nd international conference on
Very large data bases, 2006
[2] A Web Service Based Integration Model of Data-Providing Sources, 978-1-
4799-0615-4/13/$31.00 ©2013 IEEE.
[3] Dynamic Data Integration Using Web Services, Proceedings of the IEEE
International Conference on Web Services (ICWS’04)
[4] The Design and Implementation of a SOA-based Data Exchange Middleware,
2010 International Conference on Service Sciences – 2010
[5] A comparison of Web service technologies for smart meter data exchange,
2012 3rd IEEE PES Innovative Smart Grid Technologies Europe (ISGT
Europe), Berlin
[6] Communications Solutions for Heterogeneous Systems Based on SOA, 2012
International Conference on Solid State Devices and Materials Science –
science direct
[7] Higher level of interoperability through an architectural paradigm shift, 4th
International Conference on Biomedical Engineering and Informatics
(BMEI).
[8] A SOA-based Middleware for WBAN, 978-1-4244-9338-8/11/$26.00 ©2011
IEEE
[9] Higher level of interoperability through an architectural paradigm shift,2011
4th International Conference on Biomedical Engineering and Informatics
(BMEI) 978-1-4244-9352-4/11/$26.00 ©2011 IEEE
[10] Research on Heterogeneous Data Integration of Management Information
System, ICCP proceedings 2012 – IEEE
[11] Design and Implementation of Data Management Centre Based on Web
Services, 2009 Ninth International Conference on Hybrid Intelligent Systems
[12] Developing Process Mediator for Supporting Mediated Web Service
Interactions, Sixth European Conference on Web Services – IEEE 2008 –
978-0-7695-3399-5/08 $25.00 © 2008 IEEE
[13] Study on Government Information Resources Exchange Based on Directory
Service*, Eighth ACIS International Conference on Software Engineering,
Artificial Intelligence, Networking, and Parallel/Distributed Computing –
IEEE 2007
[14] U. Srivastava, K. Munagala, J. Widom, and R. Motwani. Query optimization
over web services. In Proceedings of the 32nd international conference on
Very large data bases, 2006
[15] A Web Service Based Integration Model of Data-Providing Sources, 978-1-
4799-0615-4/13/$31.00 ©2013 IEEE.
[16] Dynamic Data Integration Using Web Services, Proceedings of the IEEE
International Conference on Web Services (ICWS’04)
[17] The Design and Implementation of a SOA-based Data Exchange Middleware,
2010 International Conference on Service Sciences – 2010
Prof. Rajan Datt, Dr. N.N. Jani, Mr. Sagar Modhavadia and Mr. Parth Kadecha
http://www.iaeme.com/IJARET/index.asp 8 editor@iaeme.com
[18] A comparison of Web service technologies for smart meter data exchange,
2012 3rd IEEE PES Innovative Smart Grid Technologies Europe (ISGT
Europe), Berlin
[19] Communications Solutions for Heterogeneous Systems Based on SOA, 2012
International Conference on Solid State Devices and Materials Science –
science direct
[20] Higher level of interoperability through an architectural paradigm shift, 4th
International Conference on Biomedical Engineering and Informatics
(BMEI).
[21] A SOA-based Middleware for WBAN, 978-1-4244-9338-8/11/$26.00 ©2011
IEEE.
[22] P.Mangai and Mrs.M.Priya, Personalized User and Query Dependent
Ranking for Web Databases. International Journal of Advanced Research in
Engineering and Technology, 5(12), 2014, pp. 234 – 239.
[23] Dayananda P and Dr.Rajashree Shettar, A Novel Approach Towards
Developing A Statistical Dependent And Ranking Measure For Keyword
Search Over XML Data. International Journal of Advanced Research in
Engineering and Technology, 4(3), 2013, pp. 229 - 247.

More Related Content

What's hot

NEO4J, SQLITE AND MYSQL FOR HOSPITAL LOCALIZATION
NEO4J, SQLITE AND MYSQL FOR HOSPITAL LOCALIZATIONNEO4J, SQLITE AND MYSQL FOR HOSPITAL LOCALIZATION
NEO4J, SQLITE AND MYSQL FOR HOSPITAL LOCALIZATIONacijjournal
 
OODM-object oriented data model
OODM-object oriented data modelOODM-object oriented data model
OODM-object oriented data modelAnilPokhrel7
 
Week 1 Before the Advent of Database Systems & Fundamental Concepts
Week 1 Before the Advent of Database Systems & Fundamental ConceptsWeek 1 Before the Advent of Database Systems & Fundamental Concepts
Week 1 Before the Advent of Database Systems & Fundamental Conceptsoudesign
 
Introduction to database with ms access.hetvii
Introduction to database with ms access.hetviiIntroduction to database with ms access.hetvii
Introduction to database with ms access.hetvii07HetviBhagat
 
Web Services Discovery and Recommendation Based on Information Extraction and...
Web Services Discovery and Recommendation Based on Information Extraction and...Web Services Discovery and Recommendation Based on Information Extraction and...
Web Services Discovery and Recommendation Based on Information Extraction and...ijwscjournal
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)theijes
 
introduction of database in DBMS
introduction of database in DBMSintroduction of database in DBMS
introduction of database in DBMSAbhishekRajpoot8
 
Week 1 Lab Directions
Week 1 Lab DirectionsWeek 1 Lab Directions
Week 1 Lab Directionsoudesign
 
Introduction to database & sql
Introduction to database & sqlIntroduction to database & sql
Introduction to database & sqlzahid6
 
PATTERNS07 - Data Representation in C#
PATTERNS07 - Data Representation in C#PATTERNS07 - Data Representation in C#
PATTERNS07 - Data Representation in C#Michael Heron
 
The three level of data modeling
The three level of data modelingThe three level of data modeling
The three level of data modelingsharmila_yusof
 
28 16094 31623-1-sm efficiency (edit ari)new2
28 16094 31623-1-sm efficiency (edit ari)new228 16094 31623-1-sm efficiency (edit ari)new2
28 16094 31623-1-sm efficiency (edit ari)new2IAESIJEECS
 
SURVEY ON MONGODB: AN OPEN-SOURCE DOCUMENT DATABASE
SURVEY ON MONGODB: AN OPEN-SOURCE DOCUMENT DATABASESURVEY ON MONGODB: AN OPEN-SOURCE DOCUMENT DATABASE
SURVEY ON MONGODB: AN OPEN-SOURCE DOCUMENT DATABASEIAEME Publication
 

What's hot (18)

NEO4J, SQLITE AND MYSQL FOR HOSPITAL LOCALIZATION
NEO4J, SQLITE AND MYSQL FOR HOSPITAL LOCALIZATIONNEO4J, SQLITE AND MYSQL FOR HOSPITAL LOCALIZATION
NEO4J, SQLITE AND MYSQL FOR HOSPITAL LOCALIZATION
 
OODM-object oriented data model
OODM-object oriented data modelOODM-object oriented data model
OODM-object oriented data model
 
Week 1 Before the Advent of Database Systems & Fundamental Concepts
Week 1 Before the Advent of Database Systems & Fundamental ConceptsWeek 1 Before the Advent of Database Systems & Fundamental Concepts
Week 1 Before the Advent of Database Systems & Fundamental Concepts
 
Dn31766773
Dn31766773Dn31766773
Dn31766773
 
Introduction to database with ms access.hetvii
Introduction to database with ms access.hetviiIntroduction to database with ms access.hetvii
Introduction to database with ms access.hetvii
 
Data Convergence White Paper
Data Convergence White PaperData Convergence White Paper
Data Convergence White Paper
 
Web Services Discovery and Recommendation Based on Information Extraction and...
Web Services Discovery and Recommendation Based on Information Extraction and...Web Services Discovery and Recommendation Based on Information Extraction and...
Web Services Discovery and Recommendation Based on Information Extraction and...
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
introduction of database in DBMS
introduction of database in DBMSintroduction of database in DBMS
introduction of database in DBMS
 
Open Data Convergence
Open Data ConvergenceOpen Data Convergence
Open Data Convergence
 
Week 1 Lab Directions
Week 1 Lab DirectionsWeek 1 Lab Directions
Week 1 Lab Directions
 
Dbms
DbmsDbms
Dbms
 
Introduction to database & sql
Introduction to database & sqlIntroduction to database & sql
Introduction to database & sql
 
Entity framework1
Entity framework1Entity framework1
Entity framework1
 
PATTERNS07 - Data Representation in C#
PATTERNS07 - Data Representation in C#PATTERNS07 - Data Representation in C#
PATTERNS07 - Data Representation in C#
 
The three level of data modeling
The three level of data modelingThe three level of data modeling
The three level of data modeling
 
28 16094 31623-1-sm efficiency (edit ari)new2
28 16094 31623-1-sm efficiency (edit ari)new228 16094 31623-1-sm efficiency (edit ari)new2
28 16094 31623-1-sm efficiency (edit ari)new2
 
SURVEY ON MONGODB: AN OPEN-SOURCE DOCUMENT DATABASE
SURVEY ON MONGODB: AN OPEN-SOURCE DOCUMENT DATABASESURVEY ON MONGODB: AN OPEN-SOURCE DOCUMENT DATABASE
SURVEY ON MONGODB: AN OPEN-SOURCE DOCUMENT DATABASE
 

Viewers also liked

SAFTINet Overview for EDRC
SAFTINet Overview for EDRCSAFTINet Overview for EDRC
SAFTINet Overview for EDRCMarion Sills
 
Test seri
Test seriTest seri
Test seriSi Pink
 
Ceph Day Melbourne - Troubleshooting Ceph
Ceph Day Melbourne - Troubleshooting Ceph Ceph Day Melbourne - Troubleshooting Ceph
Ceph Day Melbourne - Troubleshooting Ceph Ceph Community
 
Assorted Certificates & Awards
Assorted Certificates & Awards Assorted Certificates & Awards
Assorted Certificates & Awards Trevor Caldwell
 
Blam games art outsourcing
Blam games art outsourcingBlam games art outsourcing
Blam games art outsourcingBlam! Games
 
Ceph Day Melbourne - Scale and performance: Servicing the Fabric and the Work...
Ceph Day Melbourne - Scale and performance: Servicing the Fabric and the Work...Ceph Day Melbourne - Scale and performance: Servicing the Fabric and the Work...
Ceph Day Melbourne - Scale and performance: Servicing the Fabric and the Work...Ceph Community
 
Vestidos de Novia colección 2017
Vestidos de Novia colección 2017Vestidos de Novia colección 2017
Vestidos de Novia colección 2017Manu Alvarez
 
Past continuous passive voice
Past continuous passive voicePast continuous passive voice
Past continuous passive voiceEdward Freire
 
Pec cv pro workgroup 3 21 12
Pec cv pro workgroup 3 21 12Pec cv pro workgroup 3 21 12
Pec cv pro workgroup 3 21 12Marion Sills
 
Humanitas Rina Brunt recommendation
Humanitas Rina Brunt recommendationHumanitas Rina Brunt recommendation
Humanitas Rina Brunt recommendationCzégai Edina
 
heilbronn grades
heilbronn gradesheilbronn grades
heilbronn gradesHue Thanh
 
Med adherence 2 july 2012
Med adherence 2 july 2012Med adherence 2 july 2012
Med adherence 2 july 2012Marion Sills
 

Viewers also liked (20)

SAFTINet Overview for EDRC
SAFTINet Overview for EDRCSAFTINet Overview for EDRC
SAFTINet Overview for EDRC
 
Ijmet 06 09_009
Ijmet 06 09_009Ijmet 06 09_009
Ijmet 06 09_009
 
Lesson Template
Lesson TemplateLesson Template
Lesson Template
 
Test seri
Test seriTest seri
Test seri
 
Ceph Day Melbourne - Troubleshooting Ceph
Ceph Day Melbourne - Troubleshooting Ceph Ceph Day Melbourne - Troubleshooting Ceph
Ceph Day Melbourne - Troubleshooting Ceph
 
Assorted Certificates & Awards
Assorted Certificates & Awards Assorted Certificates & Awards
Assorted Certificates & Awards
 
Blam games art outsourcing
Blam games art outsourcingBlam games art outsourcing
Blam games art outsourcing
 
Ceph Day Melbourne - Scale and performance: Servicing the Fabric and the Work...
Ceph Day Melbourne - Scale and performance: Servicing the Fabric and the Work...Ceph Day Melbourne - Scale and performance: Servicing the Fabric and the Work...
Ceph Day Melbourne - Scale and performance: Servicing the Fabric and the Work...
 
Ijm 06 10_006
Ijm 06 10_006Ijm 06 10_006
Ijm 06 10_006
 
Vestidos de Novia colección 2017
Vestidos de Novia colección 2017Vestidos de Novia colección 2017
Vestidos de Novia colección 2017
 
Dallas Technologies Sap Training
Dallas Technologies Sap TrainingDallas Technologies Sap Training
Dallas Technologies Sap Training
 
Past continuous passive voice
Past continuous passive voicePast continuous passive voice
Past continuous passive voice
 
Ijmet 06 10_008
Ijmet 06 10_008Ijmet 06 10_008
Ijmet 06 10_008
 
Pec cv pro workgroup 3 21 12
Pec cv pro workgroup 3 21 12Pec cv pro workgroup 3 21 12
Pec cv pro workgroup 3 21 12
 
fisio II
fisio IIfisio II
fisio II
 
Ijmet 06 09_005
Ijmet 06 09_005Ijmet 06 09_005
Ijmet 06 09_005
 
Humanitas Rina Brunt recommendation
Humanitas Rina Brunt recommendationHumanitas Rina Brunt recommendation
Humanitas Rina Brunt recommendation
 
heilbronn grades
heilbronn gradesheilbronn grades
heilbronn grades
 
Med adherence 2 july 2012
Med adherence 2 july 2012Med adherence 2 july 2012
Med adherence 2 july 2012
 
Purge analysis
Purge analysisPurge analysis
Purge analysis
 

Similar to Exchange databases between SQL and MySQL using a web service

DATA EXCHANGE MODEL USING WEB SERVICE FOR HEROGENEOUS DATABASES
DATA EXCHANGE MODEL USING WEB SERVICE FOR HEROGENEOUS DATABASESDATA EXCHANGE MODEL USING WEB SERVICE FOR HEROGENEOUS DATABASES
DATA EXCHANGE MODEL USING WEB SERVICE FOR HEROGENEOUS DATABASESIAEME Publication
 
A native enhanced elastic extension tables multi-tenant database
A native enhanced elastic extension tables multi-tenant database A native enhanced elastic extension tables multi-tenant database
A native enhanced elastic extension tables multi-tenant database IJECEIAES
 
710201931
710201931710201931
710201931IJRAT
 
A Clustering Based Collaborative and Pattern based Filtering approach for Big...
A Clustering Based Collaborative and Pattern based Filtering approach for Big...A Clustering Based Collaborative and Pattern based Filtering approach for Big...
A Clustering Based Collaborative and Pattern based Filtering approach for Big...IIRindia
 
Sql interview question part 5
Sql interview question part 5Sql interview question part 5
Sql interview question part 5kaashiv1
 
Sql interview question part 7
Sql interview question part 7Sql interview question part 7
Sql interview question part 7kaashiv1
 
Sql interview question part 12
Sql interview question part 12Sql interview question part 12
Sql interview question part 12kaashiv1
 
Sql interview question part 12
Sql interview question part 12Sql interview question part 12
Sql interview question part 12kaashiv1
 
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEW
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEWWEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEW
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEWijcseit
 
International Journal of Computer Science, Engineering and Information Techno...
International Journal of Computer Science, Engineering and Information Techno...International Journal of Computer Science, Engineering and Information Techno...
International Journal of Computer Science, Engineering and Information Techno...ijcseit
 
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEW
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEWWEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEW
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEWijcseit
 
Enhancement in Web Service Architecture
Enhancement in Web Service ArchitectureEnhancement in Web Service Architecture
Enhancement in Web Service ArchitectureIJERA Editor
 
Clustering of Semantic Web to Develop Mashup of Web Services
Clustering of Semantic Web to Develop Mashup of Web ServicesClustering of Semantic Web to Develop Mashup of Web Services
Clustering of Semantic Web to Develop Mashup of Web Servicesijsrd.com
 
A Novel Framework for Reliable and Fault Tolerant Web Services
A Novel Framework for Reliable and Fault Tolerant Web ServicesA Novel Framework for Reliable and Fault Tolerant Web Services
A Novel Framework for Reliable and Fault Tolerant Web ServicesAbhishek Kumar
 

Similar to Exchange databases between SQL and MySQL using a web service (20)

DATA EXCHANGE MODEL USING WEB SERVICE FOR HEROGENEOUS DATABASES
DATA EXCHANGE MODEL USING WEB SERVICE FOR HEROGENEOUS DATABASESDATA EXCHANGE MODEL USING WEB SERVICE FOR HEROGENEOUS DATABASES
DATA EXCHANGE MODEL USING WEB SERVICE FOR HEROGENEOUS DATABASES
 
Ijcet 06 06_007
Ijcet 06 06_007Ijcet 06 06_007
Ijcet 06 06_007
 
A native enhanced elastic extension tables multi-tenant database
A native enhanced elastic extension tables multi-tenant database A native enhanced elastic extension tables multi-tenant database
A native enhanced elastic extension tables multi-tenant database
 
710201931
710201931710201931
710201931
 
A Clustering Based Collaborative and Pattern based Filtering approach for Big...
A Clustering Based Collaborative and Pattern based Filtering approach for Big...A Clustering Based Collaborative and Pattern based Filtering approach for Big...
A Clustering Based Collaborative and Pattern based Filtering approach for Big...
 
Ebook5
Ebook5Ebook5
Ebook5
 
Sql interview question part 5
Sql interview question part 5Sql interview question part 5
Sql interview question part 5
 
Ebook7
Ebook7Ebook7
Ebook7
 
Sql interview question part 7
Sql interview question part 7Sql interview question part 7
Sql interview question part 7
 
Sql interview question part 12
Sql interview question part 12Sql interview question part 12
Sql interview question part 12
 
Ebook12
Ebook12Ebook12
Ebook12
 
Sql interview question part 12
Sql interview question part 12Sql interview question part 12
Sql interview question part 12
 
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEW
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEWWEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEW
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEW
 
International Journal of Computer Science, Engineering and Information Techno...
International Journal of Computer Science, Engineering and Information Techno...International Journal of Computer Science, Engineering and Information Techno...
International Journal of Computer Science, Engineering and Information Techno...
 
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEW
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEWWEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEW
WEB SERVICES COMPOSITION METHODS AND TECHNIQUES: A REVIEW
 
Enhancement in Web Service Architecture
Enhancement in Web Service ArchitectureEnhancement in Web Service Architecture
Enhancement in Web Service Architecture
 
Clustering of Semantic Web to Develop Mashup of Web Services
Clustering of Semantic Web to Develop Mashup of Web ServicesClustering of Semantic Web to Develop Mashup of Web Services
Clustering of Semantic Web to Develop Mashup of Web Services
 
A Novel Framework for Reliable and Fault Tolerant Web Services
A Novel Framework for Reliable and Fault Tolerant Web ServicesA Novel Framework for Reliable and Fault Tolerant Web Services
A Novel Framework for Reliable and Fault Tolerant Web Services
 
Ijcet 06 08_004
Ijcet 06 08_004Ijcet 06 08_004
Ijcet 06 08_004
 
As044285288
As044285288As044285288
As044285288
 

More from IAEME Publication

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME Publication
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...IAEME Publication
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSIAEME Publication
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSIAEME Publication
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSIAEME Publication
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSIAEME Publication
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOIAEME Publication
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IAEME Publication
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYIAEME Publication
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...IAEME Publication
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEIAEME Publication
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...IAEME Publication
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...IAEME Publication
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...IAEME Publication
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...IAEME Publication
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...IAEME Publication
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...IAEME Publication
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...IAEME Publication
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...IAEME Publication
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTIAEME Publication
 

More from IAEME Publication (20)

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdf
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
 

Recently uploaded

MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 

Recently uploaded (20)

MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 

Exchange databases between SQL and MySQL using a web service

  • 1. http://www.iaeme.com/IJARET/index.asp 1 editor@iaeme.com International Journal of Advanced Research in Engineering and Technology (IJARET) Volume 6, Issue 9, Sep 2015, pp. 01-08, Article ID: IJARET_06_09_001 Available online at http://www.iaeme.com/IJARET/issues.asp?JTypeIJARET&VType=6&IType=9 ISSN Print: 0976-6480 and ISSN Online: 0976-6499 © IAEME Publication ___________________________________________________________________________ DATABASES EXCHANGE USING WEB SERVICE MODEL Prof. Rajan Datt Assistant Professor, Nirma University Dr. N.N. Jani Director, MCA, Kadi Sarva Vishawavidyalaya Mr. Sagar Modhavadia Student, MCA, Nirma University Mr. Parth Kadecha Student, MCA, Nirma University ABSTRACT Today in the world with development of computer and network technologies, industry is using IT infrastructure for storing the data and transfering the data from the one database type to another database types. So when the data is going to store in database its formate and storing methods are different, due to this various format user is not able to integrate the heterogeneous databases with each orthers. So as solution we have developed web service as model which can used to exchange the data between the various databases.In this term paper we have discussed web service model which can be used to exchange data from one type to another and have implemented as well as developed interface in which an application we input SQL server database file and we get output as MY SQL database file and Vice Versa. Key words: Web Service, SOAP, XML Cite this Article: Prof. Rajan Datt, Dr. N.N. Jani, Mr. Sagar Modhavadia and Mr. Parth Kadecha, Simulation, Databases Exchange Using Web Service Model. International Journal of Advanced Research in Engineering and Technology, 6(9), 2015, pp. 01-08. http://www.iaeme.com/IJARET/issues.asp?JType=IJARET&VType=6&IType=9
  • 2. Prof. Rajan Datt, Dr. N.N. Jani, Mr. Sagar Modhavadia and Mr. Parth Kadecha http://www.iaeme.com/IJARET/index.asp 2 editor@iaeme.com 1. INTRODUCTION In today’s world every organization have to store their data in their own information system. Information system used by organization are different and also their database are different with development of system and the infrastructure. Different offices of the government are established in different years with various infrastructure then its database may be different from time to time, but it is the requirement of the government to share their data between the various departments of the government for taking important decisions. In this scenario it is need of the government to share or integrate the databases of the various departments. It is found that now days many organization is using service oriented architecture with web service for the interoperability of the databases [1]. Here we are going to proposed model which will exchange the database of one type in to another type using web service with the Service Oriented Architecture. Web services are web application components which can be build, found and used on the web. And it is a method of communication between two machine to machine over a network. Such as we have developed an interface in which SQL database file is given as argument in the function and as a output we get MY SQL database file with same fields, same data type of those fields and constraints. Thus, on one server there is SQL Server installed and on another server there is MY SQL installed and on third server, the web service is running which translates SQL Server database file to MY SQL database file. The technologies in which web services are written is WSDL. WSDL (Web Service Descriptive Language) is an XML based language for describing web services. UDDI (Universal Description, Discovery and Integration) is a directory. It would then contact a special protocol called SOAP (Simple Object Access Protocol) with Service Oriented Architecture (SOA). 2. RELATED WORK Authors[3] have explained the problem of large scale data integration because of design time user don’t know the structure of data , also traditional approach fail to meet the data integration problem. In this paper [4] authors have outlined the general problem of data exchange when the data are stored on heterogeneous system. So they have proposed service oriented architecture for data exchanging between application using heterogeneous databases. The purposed framework proved to be an efficient solution for sharing and accessing to heterogeneous data. Structuring the scenario of smart meter data interface by comparing web service technologies for smart meter data exchange. So in order to transfer data they used various web technologies by judging the some criteria. In[5] qualitative comparison of web service technologies provide a guidance for the right architectural design of smart meter data exchange interface depending on the context and target use case. In this paper authors [6] have focused on the gap of heterogeneous system communication. Authors have constructed a framework which can use to transfer data on heterogeneous system using web services. Data exchange platform realize the main background relational database system using we service architecture. Solution in the form of architecture to exchange data between the eHealth systems. Here [7], proposed architecture using SOA and web service to shared medication record of different eHealth system.
  • 3. Databases Exchange Using Web Service Model http://www.iaeme.com/IJARET/index.asp 3 editor@iaeme.com Presented [8] the problem of patient data exchange between the medical institution, hospital and insurance company, but the data are not in some format. As result authors have purposed framework for medical information integration based on ontology and web service to exchange or share data between different databases. Author have developed framework using web technologies which has complete encapsulation, loosely coupled, cross-platform and scalable to integrate medical information. 3. IMPLEMENTATION In implementation web service model we have created web service using visual studio c# with ASP.Net. as interface we have created one form which allows the users to select the database as source from which you can take database structure and allow you to convert the database in either SQL Server or MY SQL(Vice Versa) Figure 1 specified that this form will allow the user to select the database from SQL Server database and convert into MY SQL. Figure 2 specified that this form will allow the user to select the database from MY SQL database and convert into SQL Server. protected void btnConvert_Click(object sender, EventArgs e) { String connection_string = txtConnectionString.Text.Trim(); String db_name = txtDBName.Text.Trim(); if (db_name == "" || connection_string == "") { lblResult.Text = "* Invalid Input";
  • 4. Prof. Rajan Datt, Dr. N.N. Jani, Mr. Sagar Modhavadia and Mr. Parth Kadecha http://www.iaeme.com/IJARET/index.asp 4 editor@iaeme.com return; } DataTransferWebService.DataTransfer wsobj = new DataTransfer(); if(wsobj.DataTransferService(connection_string,db_name)) { lblResult.Text = "Result : Database Converted Successfully..."; } else { lblResult.Text = "Result : Problem in Conversion.."; } } Code: To connect with the Database and display message [WebMethod] public Boolean DataTransferService(String ConnectionString,string DataBaseName) { SqlConnection con; try { con = new SqlConnection(@"" + ConnectionString); } catch { return false; } if (checkValidConnection(con)) { MySqlConnection mscon = new MySqlConnection("Data Source=localhost;UId=root;PWD=root;"); MySqlCommand mscmd; try { mscmd = new MySqlCommand("CREATE DATABASE " + DataBaseName, mscon); mscon.Open(); mscmd.ExecuteNonQuery(); mscon.Close();
  • 5. Databases Exchange Using Web Service Model http://www.iaeme.com/IJARET/index.asp 5 editor@iaeme.com } catch { return false; } mscmd = new MySqlCommand("USE " + DataBaseName, mscon); mscon.Open(); mscmd.ExecuteNonQuery(); mscon.Close(); con.Open(); SqlCommand cmdTables = new SqlCommand("SELECT table_name FROM INFORMATION_SCHEMA.TABLES", con); SqlDataAdapter da = new SqlDataAdapter(cmdTables); DataTable dtTables = new DataTable("tbl_tables"); da.Fill(dtTables); // All table structure for (int i = 0; i < dtTables.Rows.Count; i++) { SqlCommand cmdTableData = new SqlCommand ("SELECT column_name,data_type,is_nullable FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name='" + dtTables.Rows[i]["table_name"].ToString() + "'", con); da = new SqlDataAdapter(cmdTableData); DataTable dt = new DataTable(dtTables.Rows[i]["table_name"].ToString()); da.Fill(dt); String cmdStr = "CREATE TABLE " + dtTables.Rows[i]["table_name"] + "( "; for(int j=0;j<dt.Rows.Count;j++) { string is_null = ""; if(dt.Rows[j]["is_nullable"].ToString() == "NO") { is_null = "NOT NULL"; } if(j==dt.Rows.Count-1) {
  • 6. Prof. Rajan Datt, Dr. N.N. Jani, Mr. Sagar Modhavadia and Mr. Parth Kadecha http://www.iaeme.com/IJARET/index.asp 6 editor@iaeme.com cmdStr += dt.Rows[j]["column_name"].ToString() + " " +dt.Rows[j]["data_type"].ToString() + "(50) " + is_null ; } else { cmdStr += dt.Rows[j]["column_name"].ToString() + " " + dt.Rows[j]["data_type"].ToString() + "(50) " + is_null + ", "; } } Code: for data transfer and fetch schema and define all structure Here we have create web service using SQL Server with visual studio. We have created web service with web method which allows the user to convert database from one format to another format. We have developed web service with some methods which can help us to convert the database, also we have used some of the object of ADO.NET and information schema for getting the structure of the databases. 4. RESULTS We have implemented this service with database which is have various number of records and we found that it is running successfully without any loss of the data from the databases. Table 1 conversion table (MY SQL to SQL Server) MY SQL Records Response Time Success Ratio Database 1 1000 25 milliseconds 100% Database 2 5000 40 milliseconds 99% Database 3 10000 60 milliseconds 95% Table 2 conversion table (SQL Server To MY SQL) SQL Server Records Response Time Success Ratio Database 1 1000 20 milliseconds 100% Database 2 5000 44 milliseconds 97% Database 3 10000 55 milliseconds 96% We have implemented the web service model on different database with the number of various records and we found that it is converted the database successfully. We have also tried to implement it with minimum time with minimum response time. 5. CONCLUSION This research purposes to use of web service as a potential middleware to fulfil the need of data exchange. So we have developed a general web based service which implement to exchange the database format from one type to another type.We need to conduct further investigations on designing and implementing Quality of service module that give confirmation of reliability, availability and achievement. But still
  • 7. Databases Exchange Using Web Service Model http://www.iaeme.com/IJARET/index.asp 7 editor@iaeme.com some future work is required like database should be converted with full all the constraint that are define when database is created REFERENCES [1] U. Srivastava, K. Munagala, J. Widom, and R. Motwani. Query optimization over web services. In Proceedings of the 32nd international conference on Very large data bases, 2006 [2] A Web Service Based Integration Model of Data-Providing Sources, 978-1- 4799-0615-4/13/$31.00 ©2013 IEEE. [3] Dynamic Data Integration Using Web Services, Proceedings of the IEEE International Conference on Web Services (ICWS’04) [4] The Design and Implementation of a SOA-based Data Exchange Middleware, 2010 International Conference on Service Sciences – 2010 [5] A comparison of Web service technologies for smart meter data exchange, 2012 3rd IEEE PES Innovative Smart Grid Technologies Europe (ISGT Europe), Berlin [6] Communications Solutions for Heterogeneous Systems Based on SOA, 2012 International Conference on Solid State Devices and Materials Science – science direct [7] Higher level of interoperability through an architectural paradigm shift, 4th International Conference on Biomedical Engineering and Informatics (BMEI). [8] A SOA-based Middleware for WBAN, 978-1-4244-9338-8/11/$26.00 ©2011 IEEE [9] Higher level of interoperability through an architectural paradigm shift,2011 4th International Conference on Biomedical Engineering and Informatics (BMEI) 978-1-4244-9352-4/11/$26.00 ©2011 IEEE [10] Research on Heterogeneous Data Integration of Management Information System, ICCP proceedings 2012 – IEEE [11] Design and Implementation of Data Management Centre Based on Web Services, 2009 Ninth International Conference on Hybrid Intelligent Systems [12] Developing Process Mediator for Supporting Mediated Web Service Interactions, Sixth European Conference on Web Services – IEEE 2008 – 978-0-7695-3399-5/08 $25.00 © 2008 IEEE [13] Study on Government Information Resources Exchange Based on Directory Service*, Eighth ACIS International Conference on Software Engineering, Artificial Intelligence, Networking, and Parallel/Distributed Computing – IEEE 2007 [14] U. Srivastava, K. Munagala, J. Widom, and R. Motwani. Query optimization over web services. In Proceedings of the 32nd international conference on Very large data bases, 2006 [15] A Web Service Based Integration Model of Data-Providing Sources, 978-1- 4799-0615-4/13/$31.00 ©2013 IEEE. [16] Dynamic Data Integration Using Web Services, Proceedings of the IEEE International Conference on Web Services (ICWS’04) [17] The Design and Implementation of a SOA-based Data Exchange Middleware, 2010 International Conference on Service Sciences – 2010
  • 8. Prof. Rajan Datt, Dr. N.N. Jani, Mr. Sagar Modhavadia and Mr. Parth Kadecha http://www.iaeme.com/IJARET/index.asp 8 editor@iaeme.com [18] A comparison of Web service technologies for smart meter data exchange, 2012 3rd IEEE PES Innovative Smart Grid Technologies Europe (ISGT Europe), Berlin [19] Communications Solutions for Heterogeneous Systems Based on SOA, 2012 International Conference on Solid State Devices and Materials Science – science direct [20] Higher level of interoperability through an architectural paradigm shift, 4th International Conference on Biomedical Engineering and Informatics (BMEI). [21] A SOA-based Middleware for WBAN, 978-1-4244-9338-8/11/$26.00 ©2011 IEEE. [22] P.Mangai and Mrs.M.Priya, Personalized User and Query Dependent Ranking for Web Databases. International Journal of Advanced Research in Engineering and Technology, 5(12), 2014, pp. 234 – 239. [23] Dayananda P and Dr.Rajashree Shettar, A Novel Approach Towards Developing A Statistical Dependent And Ranking Measure For Keyword Search Over XML Data. International Journal of Advanced Research in Engineering and Technology, 4(3), 2013, pp. 229 - 247.