Application of ORACLE Database Design in the Creation of Information Systems for Small and Medium Enterprises

Total Page:16

File Type:pdf, Size:1020Kb

Application of ORACLE Database Design in the Creation of Information Systems for Small and Medium Enterprises SAR Journal. Volume 2, Issue 1, Pages 39-46, ISSN 2619-9955, DOI: 10.18421/SAR21-06 March 2019. Application of ORACLE Database Design in the Creation of Information Systems for Small and Medium Enterprises Fadil Novalić, Hamza Kamberović, Muzafer Saračević University of Novi Pazar, D. Tucovića bb, Novi Pazar, Serbia Abstract – This paper describes the importance of the The access to the creation and the use of development of information systems for the needs of information systems should be comprehensive. In small and medium enterprises. The paper refers to order to successfully create and implement the other researches which prove the necessity of system, the starting point is modeling the actual introducing information systems in small and medium system. For this task are used some of the modeling enterprises. Oracle Database Design is presented as a simple and efficient manner to create a database on the tools in order to encompass all the necessary system grounds of which the information system has been entities and the relationships among them, while successfully developed. This paper provides a complete avoiding inclusion of unnecessary data, duplication example of database design. The conclusion provides a of data, placement of data in a place that is not the proposal for further researches that can be based on best for it, and similar defects in modeling. this paper. The course of work is determined by the flows in the development and application of information Keywords – Oracle, Information system, ERD, Database. systems in small and medium enterprises. Therefore, it is possible to say that the subject of this research is problem analysis of the businesses of small and 1. Introduction medium enterprises caused by the lack of use of In the era of accelerated development of information systems in the business, presentation of information and communication technologies and the tools for modeling the real system, and a their applications in many spheres of everyday life, description of an actual example of a system information systems have become a business's developed according to Oracle rules for modeling helping tool in almost every small and medium-sized real system and database design. enterprise. For the purposes of this paper was used the research on the importance of using Web application as a kind of information system in small and medium-sized enterprises. [1] The aim of the paper is to present the rules for efficient modeling of the real system according to the DOI: 10.18421/SAR21-06 requirements and for the needs of a particular https://dx.doi.org/10.18421/SAR21-06 company’s business. The realization of the Corresponding author: Fadil Novalić, mentioned goal of the paper should result with a University of Novi Pazar, D. Tucovida bb, Novi Pazar, good solution in creating a quality model of the real Serbia system which presents a small enterprise. Email: [email protected] The paper deals with modeling of the real system according to Oracle database design principles. Received: 22 January 2019. These rules manage to successfully bring designers Accepted: 05 March 2019. Published: 25 March 2019. to complete solutions, which sometimes may be complex. It starts from modeling the real system, © 2019 Fadil Novalić, Hamza Kamberović, which gives the conceptual model of the system. Muzafer Saračević; published by UIKTEN. This work is System entities are treated as entities, their licensed under the Creative Commons Attribution- characteristics, essential for the functioning of the NonCommercial-NoDerivs 3.0 License. system, represent the attributes of the entities, and The article is published with Open Access at relationships between them are related. Of course, www.sarjournal.com during all of this are taught the rules about optimal data structure, in order to keep data within the SAR Journal – Volume 2 / Number 1 / 2019. 39 SAR Journal. Volume 2, Issue 1, Pages 39-46, ISSN 2619-9955, DOI: 10.18421/SAR21-06 March 2019. structure running at the best location, avoiding "Objects-links diagram (ERD) is a graphical unnecessary duplication of data, etc. These rules are presentation of the associated entities and constraints defined through three forms of normalization. The that constitute the given design or project. As with conceptual model of the system is represented other visually-oriented design methodologies, it through the Entity Relationship Diagram - ERD, in provides a graphical summary of the database which the elements are represented by a standard, so structure that is very useful to the designer. "[5] that anyone who knows the standards of creating Based on the above, we realize that the ERD is these diagrams can understand them. After the based on important participants in the system conceptual model, the next step is moved to creating (entities), their features (attributes) and relationships a physical database, again according to the well- (relations). Of course, creating a conceptual data defined rules according to which the entities become model is not that simple. It is necessary to include in tables, the attributes become columns, and the links it all the necessary details. serve to define foreign keys by which tables are An entity is an object in a system, an event, or a interconnected.. concept. According to the Oracle database design rules, the entity name consists of a noun singular and 2. Oracle database design printed in capital letters. For example, CAR, ACCOUNT, CARPART, etc. Data describing the The design of database represents an interphase in entity are its attributes. The attribute is a specific designing the information system. In order for the piece of information that: describes an entity, information system to support the real-world quantifies an entity, qualifies an entity, classifies an functions of the system, it should make its image entity, and / or specifies an entity. Attributes have understandable for information technology. In other their own data type. They can represent a number, a words, the information system is a model of the real string of characters, a date, a file, and so on. For system. Through the process of developing the example, for an entity CARPART, the attributes can information system, real-world model systems are be a code, a name, a category, a date of production, a created on several levels. The first model obtained is price, etc. Instance is the notion that must be called a logical or conceptual model, and the mentioned in the story about the entities. It represents following one is a physical model, which implies a one copy of the entity. Each instance is uniquely database. The starting point in modeling the identified by one attribute or a combination of information system is to comprehend the real system multiple attributes. This attribute or combination of as a set of elements interacting with one another. attributes is called a Unique Identifier(s)-UID. The "The system is most generally defined as a set of UID has a different value for each instance, while objects (entities) and their interconnections. Objects other attributes can have the same value in multiple in the system can be some physical objects, concepts, instances, but only one value for one instance at one events, and more. Objects in a model of a system are time. For example, the instance CARPART can be a described through their properties (attributes) and set battery. It may have its own UID in the form of an relationships that connect these objects, as well as the article code and this code can not be assigned to any characteristic of those relations."[6] other car part. The attribute price may have the same Oracle Corporation uses the model of entity value for multiple car parts, but each car part can relations represented through a diagram when have only one price at a time. modeling the information systems. "Model of Entity Sometimes it makes sense to divide the entity into Relations (ER Model) is a list of all entities and subtypes. This can be the case when a group of attributes, as well as all relationships between entities instances has special properties, such as attributes that are of significance. This model also provides and connections that exist only for this group of basic information such as entity names, data types, instances. In this case, the entity is called an entity's and constraints. This model does not necessarily overhead, and each group is called an entity subtype. include an image, but usually the model presented For example, in car service, the entity SERVICE can through a diagram is very valuable."[4] be related to the sale of car parts and to the car's Oracle's conceptual model is called Entity service itself. These subjects in the car service Relationship Diagram - ERD. "The entities-links business have common attributes, but car parts must diagram, known as ERD, is a consistent tool that can have a price, while the price of the service itself will be used to represent the needs for data regardless of be based on the price of a working hour. which database type is used and even when the Oracle has set conventions on the presentation of database is not used at all." [2] the ERD elements. This allows a proper The ERD can also be called a data model, since it interpretation of the conceptual model of the system is the starting model of the information system. by the database designer. According to the above conventions, the entity and its attributes are placed in 40 SAR Journal – Volume 2 / Number 1 / 2019. SAR Journal. Volume 2, Issue 1, Pages 39-46, ISSN 2619-9955, DOI: 10.18421/SAR21-06 March 2019. an oval box. An entity is named in singular and 3.
Recommended publications
  • Higher Education in Serbia - Numbers and Figures
    13.6.2018. Study Visit with Coordination Meetings University of Twente, Enschede , Netherlands 10th - 14th June 2018 Higher education in Serbia - numbers and figures - Zorana Lužanin University of Novi Sad [email protected] 2017 New Law on Higher Education: external quality control every seven years Action Plan for Implementation of the Strategy ( 90/157 ) 2012 Strategy for Education Development in Serbia 2020 (4/9 ) 2007 Accreditation –” 1st round ” National Council for Higher Education (NCHE) 2006 Commission for Accreditation and Quality Assurance (CAQA) 2005 Law on Higher Education: external quality control every five years ; self- evaluation every three years 2003 Serbia joined the Bologna process 1 13.6.2018. Commission for Accreditation and Quality Assurance: ACCREDITATION EXTERNAL QUALITY CONTROL RULES AND REGULATIONS ON ACCREDITATION RULES AND REGULATIONS ON STANDARD STANDARDS AND PROCEDURES FOR HIGHER PROCEDURES OF EXTERNAL QUALITY CONTROL EDUCATION INSTITUTIONS AND THEIR (2006) STUDY PROGRAMMES (2006) the process resulting in a formal decision resulting in recommendations instead of decisions evaluation of minimum requirements evaluation of work of a HEI, not in view of (quality threshold): yes/no minimum requirement Higher education institutions (Article 43): 1) universities; 19 2) faculties or academies of arts within universities; 125 3) academies of professional career studies; 0 4) four-year colleges; 3 5) four-year colleges of professional career studies (colleges of applied studies) 55 0 3 19 55 125 2 13.6.2018. HEIs students universities 19 218231 colleges of applied sciences 55 43877 Number of HEIs Number of students on HEIs universities 26% colleges of applied sciences 27% universities colleges of 73% applied sciences 74% HEIs Students 2016/17.
    [Show full text]
  • Ww.Univerzitetps.Com Dear Sir Or Madam
    ww.univerzitetps.com Dear Sir or Madam, We are pleased to inform you that The Fifth International Academic Conference “Science and Practice of Business Studies” will be held on 15th September, 2017 at The University of Business Studies in Banja Luka. Topics: 01 ECONOMIC STUDIES 1. New economy, the challenges and the state of the domestic market 2. Strategies of management as the drivers of competitiveness 3. Economic relations in the process of globalization 4. Forensic Accounting and Auditing 5. Management control system 02 ENVIRONMENTAL STUDIES 1. Ecology and Sustainable Development 2. Biodiversity and Biodiversity Protection 3. Solving health and environmental problems 4. Organic Agriculture 03 LEGAL STUDIES 1. Local self-government in the function of society development 2. Regulations in BiH paving the way to the European Union 3. Judicial authorities and crime prevention 4. Law and legal security in business operations 04 TOURISM AND HOSPITALITY STUDIES 1. The importance of cultural and historical heritage of the Republic of Srpska in tourism development 2. Tourism as a driver of the regional development 3. The integration of Bosnia and Herzegovina in the European and global tourism trends 05 INFORMATION AND DESIGN STUDIES 1. Internet of Things (IoT) 2. Big Data 3. Education and design 4. Design as culture 5. Design and space 06 FOREIGN LANGUAGES IN BUSINESS STUDIES ACADEMIC COMMITTEE: 1. Prof. dr Marko Rajčević, The Faculty of Law, University of Banja Luka 2. Prof. dr Boris Tihi, Academy of Science B&H (full member), The Faculty of Economics, University of Sarajevo 3. Prof. dr Valery Zusman, National Research University, Higher School of Economics, Novgorod, Russia 4.
    [Show full text]
  • [email protected], [email protected] Www
    PERSONAL INFORMATION Name MARKO STOJANOVIĆ Address Telephone Mobil Fax E-mail [email protected], [email protected] Web www.worldmime.org and www.curling.rs Nationality Serbian Date of birth 2ND of January 1971. WORK EXPERIENCE • Dates (from – to) From 2013 to date • Name and address of employer BELGRADE YOUTH CENTRE “DOM OMLADINE BEOGRADA”, Makedonska 22, 11000 Belgrade, Telephone: + 381 (0) 11 322 01 27, www.domomladine.org; [email protected] • Type of business or sector Belgrade Youth Centre is a cultural institution of the City of Belgrade • Occupation or position held Acting GENERAL MANAGER and Director of the Belgrade Jazz Festival • Main activities and responsibilities Organising work process and managing employees as well as artists and finances. Development and improvement of programs, work processes and financial situation. Developing relationships with Belgrade, Serbian and international youth as primary audience, but with city and state governments, core diplomatique, ngo's, youth, educational and artistic institutions, formal and informal groups and individuals. Produceing the Belgrade Jazz Festival since 1971. • Dates (from – to) From 2013 and 2014 • Name and address of employer SINGIDUNUM UNIVERSITY, Danijelova 32, 11000 Belgrade, Telephone: + 381 (0) 11 3093 220, www.singidunum.ac.rs ; [email protected] • Type of business or sector Management and Communication • Occupation or position held LECTURER AND PR CONSULTANT • Main activities and responsibilities Teaching Communication Skills and Public
    [Show full text]
  • Migration Studies in Serbian Universities Curricula
    MIGRATION STUDIES IN SERBIAN UNIVERSITIES CURRICULA Project: MAINSTREAMING MIGRATION INTO NATIONAL DEVELOPMENT STRATEGIES Report Prof. Dragan R. Simic, PhD, Assist. Magister Dragan Zivojinovic, University of Belgrade – Faculty of Political Science Belgrade, June 2015. 1 This publication has been developed with the assistance of the Swiss Agency for Development and Cooperation (SDC), International Organization for Migration (IOM) and the United Nations Development Programme (UNDP), within the framework of a joint global project “Introducing Migration in National Development Strategies”. The content of this publication does not necessarily reflect the views of SDC, IOM or UNDP, or of their member states. 2 Content INTRODUCTION ................................................................................................................................. 5 I MIGRATION AS GLOBAL CHALLENGE AND THREAT IN THE 21 ST CENTURY ....................................... 8 Population movement as a security threat ....................................................................................... 12 II MIGRATION AND DEVELOPMENT ................................................................................................. 14 III MIGRATION IN SERBIAN UNIVERSITIES CURRICULA .................................................................... 16 Migration studies at University of Belgrade ..................................................................................... 17 MigrationMigration in the curriculum of the Faculty of Geography ...........................................
    [Show full text]
  • I. Semester II. Semester EPF BIH MOSTAR01 UNIVERSITY OF
    Rok za prijavo na partnerski Zahtevano Koda partnerske Epoštni naslov partnerske Spletna stran partnerske ISCED Članica UM Naziv partnerske institucije Država znanje tujega Študijsko področje institucije institucije institucije I. semester II. semester koda študija jezika Stopnja Št.mesecev Št.študentov http://www.unmo.ba/en 1st EPF BIH MOSTAR01 UNIVERSITY OF MOSTAR Bosnia and Herzegovina [email protected] EN B1 July 1 December 1 0311 Economics 10 1 g.aspx 2nd http://english.hznu.edu.c 1st EPF CHN HANGZHOU HANGZHOU NORMAL UNIVERSITY China [email protected] n/faculties&schools/scho EN B1 /CHN B1 July 1 January 15 0311 Economics 2nd 5 1 ol&programs/ 3rd 1st http://www.kpi.kharkov. EPF UKR KHARKIV NATIONAL TECHNICAL UNIVERSITY Ukraine [email protected] EN B1/ RU B1 May 31 December 15 0311 Economics 2nd 5 1 ua/en/international 3rd 1st FE SRB NOVI-SAD01 UNIVERSITY OF NOVI SAD Serbia [email protected] http://www.uns.ac.rs/en EN B1 June 30 October 31 0713 Electricity and energy 2nd 20 2 3rd http://www.unmo.ba/en 1st FERI BIH MOSTAR01 UNIVERSITY OF MOSTAR Bosnia and Herzegovina [email protected] EN B1 July 1 December 1 0611 Computer use 10 1 g.aspx 2nd http://poslovnifakultetval 1st FERI SRB VALJEVO01 SINGIDUNUM UNIVERSITY Serbia [email protected] EN B1 July 1 December 1 0611 Computer use 20 2 jevo.edu.rs 2nd http://poslovnifakultetval Database and network design and 1st FERI SRB VALJEVO01 SINGIDUNUM UNIVERSITY Serbia [email protected] EN B1 July 1 December 1 0612 20 2 jevo.edu.rs administration 2nd http://poslovnifakultetval Software and applications 1st FERI SRB VALJEVO01 SINGIDUNUM UNIVERSITY Serbia [email protected] EN B1 July 1 December 1 0613 20 2 jevo.edu.rs development and analysis 2nd 1st http://www.kpi.kharkov.
    [Show full text]
  • Baseline Assessment of Integrity in Higher Education in Serbia
    Strengthen Integrity and Combat Corruption in Higher Education BASELINE ASSESSMENT OF INTEGRITY IN HIGHER EDUCATION IN SERBIA Fighting corruption, http://horizontal-facility-eu.coe.int economic crime and organised crime All rights reserved. No part of this publication may be translated, reproduced or transmitted, in any form or by any means, electronic (CD-Rom, Internet, etc.) or mechanical, including photocopying, recording or any information storage or retrieval system, without the prior permission in writing from the Directorate of Communications (F-67075 Strasbourg Cedex or [email protected]). This document has been produced using funds of a joint project between the European Union and the Council of Europe: “Strengthen Integrity and Combat Corruption in Higher Education”. The views expressed herein can in no way be taken to reflect the official opinion of the European Union or the Council of Europe. © Council of Europe, October 2017 2 Strengthen Integrity and Combat Corruption in Higher Education BASELINE ASSESSMENT OF INTEGRITY IN HIGHER EDUCATION IN SERBIA Council of Europe’s experts: Professor Ian Smith, University of the West of Scotland, and Professor Tom Hamilton, University of Stirling October 2017 3 TABLE OF CONTENTS EXECUTIVE SUMMARY ................................................................................................................. 5 1 - INTRODUCTION, INCLUDING GENERAL APPROACHES, METHODOLOGIES AND USE OF OTHER WORK ..............................................................................................................................
    [Show full text]
  • Real Estate Today
    SREALE RESTABTE TODAIAY 2015 CONTENTS Contents 04,05 SERBIA AT A GLANCE 06,07 ECONOMY 08,09,10 EDUCATION 11 MOTIVATION PLATFORM 12,13 ACQUISITION OF REAL ESTATE 14,15 SERBIA OFFICE MARKET 16,17 BELGRADE SUBMARKETS 18,19 NEW TRENDS IN OFFICE SPACES 20,21,22 RETAIL MARKET 23 RETAIL WAREHOUSE MARKET 24,25,26 RESIDENTIAL MARKET 27 RESIDENTIAL LEASE 28 INDUSTRIAL MARKET 29 LAND 30,31 HOTEL MARKET 32,33 INVESTMENT MARKET 34,35,36,37 TAXATION ON REAL ESTATE IN SERBIA 38,39 CONTACT 40 MARKET PRACTICE 01 FOREWORD Dragan Radulovic, Managing Director No. 1 real estate consultancy in Serbia 4 years in a row market leaders 60% share in the office market Representing over 150 tenant companies Around 30,000 sq m office transactions in 2014 With the very active first half of the year and known brands are currently putting a lot of effort announced projects by key international developers trying to secure the position within the existing some being already present, the others just shopping schemes, especially in larger cities like watching for the opportunity to enter, we could be Belgrade, Nis and Novi Sad. CBRE Group Inc. CBS International is the part of the CBRE optimistic when it comes to the year 2015. Residential market has for the past two years Affiliate Network, the world's largest Serbian property market being as underdeveloped stabilized, both in terms of the sales prices and as § 70% of top Corporations choose CBRE commercial real estate services firm (in as it is, becomes more attractive for the developers, per the demand vs.
    [Show full text]
  • On the Development of Computer Science Among Mathematicians1
    Scientific paper On the Development of Computer Science among Mathematicians1 UDC 51:004(091) DOI 10.18485/infotheca.2018.18.1.1 Vitas Duˇsko ABSTRACT: The development of com- [email protected] puter science in the contemporary sense at the University of Belgrade University of Belgrade, and especially among Faculty of Mathematics Belgrade mathematicians, is firmly connected to the procurement of the first reliable com- Serbia puter system in 1968 at the University, the IBM 360/44 system, as well as the concep- tion of the development of programming as conceived by professor Nedeljko Parezanovi´c. This paper outlines the events that led to es- tablishing computer science as an independent discipline in Serbia. KEYWORDS: computer science, programming, computer network, computer terminology, Nedeljko Parezanovi´c PAPER SUBMITTED: 7 May 2018 PAPER ACCEPTED: 4 June 2018 1 Introduction This year marks half a century of the first, significant installation of the computer system from the IBM 360 series at the University of Belgrade. It is, therefore, an appropriate occasion to give an account of how the qualities of this machine, and even more the people engaged with it, influenced the development of computer science among Serbian mathematicians, and in Serbia in general. To the extent to which our feeble memory and preserved documents allow us, we will attempt to demonstrate how this computer – once incorporated into a well-conceived development concept – set long- term trajectories of the development of Serbian computer science and its 1 This text is a written version of my address regarding the development of com- puter science at the Faculty of Mathematics given at the occasion of the first Nedeljko Parezanovi´caward for most successful computer science students in November 2017.
    [Show full text]
  • Final 19.11.2019
    INVITED PAPERS Scientific - original paper Singidunum University International Scientic Conference FINANCIAL TRANSACTION MONITORING SOFTWARE TOOL IN THE UNIVERSITY BUSINESS ENVIRONMENT Milovan Stanišić, Abstract: Miloš Dobrojević*, Financial flows within a single company can be very complex and difficult to track, even when the business operations are monitored by use of advanced information systems. A large number Marko Milojević of transactions, on one hand, and a large turnover of goods and / or services on the other, besides making difficult to perceive the current situation in full, creates a favorable environment for the emergence of financial crime. This paper describes a software tool developed in the form of web Singidunum University, application that monitors data from multiple external sources (information systems) paraphrase, Belgrade, Serbia and then displays the obtained results graphically or in spreadsheet format. The purpose of this software is to make it easier for middle and top management to perceive the current balance of the company, controlling of vital financial information, budgeting and planning of capital expenditures, thus facillitating foreseeing and making of short and long-term business decisions. Although initially intendend for use in the university business environment, this software application possesses the potential to be used in other industries as well. Keywords: financial flows tracking, financial information system, asynchronous web applications, web tech- nologies, university financial management.
    [Show full text]
  • Editorial Advisory Board List of Reviewers
    Editorial Advisory Board James D. Hollan, University of California, USA Saadi Lahlou, London School of Economics, UK Norbert Streitz, Smart Future Initiative, Germany Kenton O’Hara, Pervasive Media Studio, UK Maddy D. Janse, Sector Digital Lifestyle Technology of Philips Research, the Netherlands Susanne Bay, Siemens AG, Germany Carsten Magerkurth, SAP Research CEC St. Gallen, Switzerland Tico Ballagas, Nokia Research, USA Adrian David Cheok, National University of Singapore, Singapore Elaine Huang, University of Calgary, Canada List of Reviewers Jens E. Appell, Fraunhofer Institute for Digital Media Technology, Germany Tico Ballagas, Nokia Research, USA Susanne Bay, Siemens AG, Germany Russell Beale, University of Birmingham, UK Bert Bongers, University of Technology Sydney, Australia Jan Borchers, RWTH Aachen University, Germany Pascale Carayon, University of Wisconsin-Madison, USA Stefan Carmien, Fatronik-Tecnalia, Spain Adrian David Cheok, National University of Singapore, Singapore Hongmei Chi, Florida A&M University, USA Cynthia L. Corritore, Creighton University, USA Katinka Dijkstra, Erasmus University, The Netherlands John Duncan, Bloomington, USA Henrik Enquist, Lund, Sweden Martin G. Helander, Nanyang Technological University, Singapore Carlos Ferraz, Universidade Federal de Pernambuco, Brazil Paul Fergus, Liverpool John Moores University, UK Diego Gachet Páez, Universidad Europea de Madrid, Spain Dave Haniff, Milton Keynes, UK Kenton O’Hara, Microsoft Research, UK Brett Harnett, University of Cincinnati, USA James D. Hollan,
    [Show full text]
  • Graduate Colleges & Universities
    Delivering Academic Opportunities Worldwide For Over 90 Years POST-SECONDARY EDUCATION PLANS Since 2010, UNHS students have reported plans to attend the following colleges and universities: American InterContinental University Carleton University, Canada Ecole Hôtelière de Grand-Bassam, Côte d’Ivoire Academy of Art University Carroll Community College Emmaus Bible College Alabama State University Carroll University Emory University Algonquin College, Canada Cedarville University Enderun Colleges, Philippines AMA International University Bahrain, Bahrain Centennial College, Canada Erie Community College American International College Central Carolina Technical College ESEI International Business School American University Central Community College EU Business School, Spain American University of Athens, Greece Central Connecticut State University European University of Madrid, Spain Anahuac University of Mexico Central Michigan University Fashion Institute of Design & Merchandising Anglia Ruskin University, UK CEU Cardenal Herrera University, Spain Fashion Institute of Technology Ankara University, Turkey Chadron State College Federico Santa María Technical University, Chile Aristotle University of Thessaloniki, Greece Chatham University Felician University Arizona State University China Jiliang University, China Florida Atlantic University Auburn University Chinese Culture University, Taiwan Florida International University Austin Community College City, University of London, UK Florida Southern College Austin Peay State University Clarkson
    [Show full text]
  • Twitter Data Analytics in Education Using Ibm Infosphere Biginsights
    SINTEZA 2016 INTERNATIONAL SCIENTIFIC CONFERENCE ON ICT AND E-BUSINESS RELATED RESEARCH THE INTERNET AND DEVELOPMENT PERSPECTIVES TWITTER DATA ANALYTICS IN EDUCATION USING IBM INFOSPHERE BIGINSIGHTS Miloš Popović, Abstract: This paper explains the usage of Twitter data in a number of subjects on higher Milan Milosavljević, education institutions. It examines procedures for defining the interactions Pavle Dakić between students and professors through social networks, in order to develop more effective teaching. Describing in detail the way in which Big data tech- nology such as “IBM InfoSphere BigInsights” allows processing of the data, Singidunum University, which are primarily downloaded from social networks and later organized 32 Danijelova Street, Belgrade, Serbia in Hadoop environment. To that end, we have designed an application for creating data file based on the search query. Evaluation through analysis of exam results confirms that the proposed solution produces better results in terms of student’s academic achievements. Students are encouraged to achieve better results, which ensures better cooperation in communication of all participants in the educational process. Key words: Twitter, data analytics, education, big data, IBM InfoSphere BigInsights. 1. INTRODUCTION In the last three years, human society has created and saved more information than at any time in history [1]. Twitter on daily occurrences has more than 200 million tweets. Students are widely using social net- works in education, indicating that Twitter has a large amount of infor- mation that can be further analyzed and used in the existing educational systems. It is possible to find out who and what term they are talking about, and what they made the search query for.
    [Show full text]